关于用户输入的(新)python问题

时间:2015-07-01 22:31:12

标签: python python-3.x input python-3.3

好的,我对用户输入有疑问,这很简单,我是新的 所以..我正在使用python 3.3,如果我要键入

input("Enter name and age: ")

如何组合记录名称和年龄的if语句并告诉用户:

print("Your name is this and your age is that")

带有插入的值, PS,我使用notepad ++作为IDE 和cmd输入代码的输入。 所以没有python shell。 在此先感谢,请详细说明您的答案如何运作 因为我对python很新,我以前一直在编写动作脚本 但它太过时了,所以我知道一些事情或2个关于循环,但我从来没有真正编写可以记录的输入数据。

提前致谢。

1 个答案:

答案 0 :(得分:1)

name, age = input("Enter name and age: ").split()
print("Your name is {this} and your age is {that}".format(this=name, that=age))