我只有14岁,对于python来说还是新手。我想让我的程序等待用户输入内容(例如是或否),然后根据答案做出不同的反应。我使用Python 3(3.4)。有没有简单的方法可以做到这一点?
答案 0 :(得分:2)
您可以使用input()
function:
choice = input("Enter Yes or No: ")
但我建议你先阅读一本书或Python tutorials,其中包含了从Python开始所需要知道的所有内容。
答案 1 :(得分:0)
根据其他答案和评论,我强烈建议您阅读Python教程。
但在回答有关获取用户输入和分支的问题时:
user_choice = input("Enter yes or no: ")
if user_choice == "yes":
print("User entered 'yes'!")
elif user_choice == "no":
print("User entered 'no'!")
else:
print("Unknown value entered.")
答案 2 :(得分:0)
使用input()
功能。如果您想以这种方式稍后使用输入,则应将其存储在变量中:
varname = input()
或者:
varname = input('Write your message here')
你最好通过python教程,检查:
Invent With Python
Learn Python The Hard Way
Code Academy, Python