我们如何从python中获取用户的输入?因为我们使用scanf()在'C'中取它;

时间:2017-01-18 17:15:24

标签: python

因为我们使用scanf()从'C'中获取用户的输入,类似于python中的输入?

2 个答案:

答案 0 :(得分:0)

输入()

例如,这可以用作:

Name = input("Please enter your name?")

用于Python 2,这将是: 的raw_input()

例如,这可以用作:

Name = raw_input("Please enter your name?")

答案 1 :(得分:0)

在Python 2中,您可以使用input()raw_input()

s = input()     // gets int value        

k = raw_input()   // gets string value