📜  python 输入 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:35.187000             🧑  作者: Mango

代码示例6
# we make the input to take the name of user
name = input("inter your name : ")
# this input to take the age
age = input("inter your age : ")

# the print to say to user hi and this is your age
print(f"hi {name} your age is {age}")