因为我们使用scanf()从'C'中获取用户的输入,类似于python中的输入?
答案 0 :(得分:0)
输入()
例如,这可以用作:
Name = input("Please enter your name?")
用于Python 2,这将是: 的raw_input()
例如,这可以用作:
Name = raw_input("Please enter your name?")
答案 1 :(得分:0)
input()
或raw_input()
s = input() // gets int value
k = raw_input() // gets string value