01 Hello, Python!

目标:万能的Hello,World!

接收用户输入,并打印出来。

#!/usr/bin/python

# First comment
print("Hello, Python!")  # second comment

name = input("Please input your name:
")
print("your name is ", name)

input("Enter any key to exit...")

原文地址:https://www.cnblogs.com/matrix77/p/3389393.html