请求用户的姓名并打印出来:
print("Enter your name:")x = input()print("Hello, " + x)
print("Enter your name:")
x = input()
print("Hello, " + x)
input() 函数允许用户输入。
input()
input(prompt)
使用 prompt 参数在输入之前写一条消息:
x = input("Enter your name:")print("Hello, " + x)
x = input("Enter your name:")