Files
assignment/my.py

12 lines
173 B
Python

#!/usr/bin/env python3
def greet():
"""打印问候语"""
print("Hello, World!")
def main():
"""主函数"""
greet()
if __name__ == "__main__":
main()