我想使用 Python 3 的input()
函数来询问用户是或否的问题。例如:
affirmative = ["", "y", "yes"]
x = input("Continue? [Y/n] ").lower()
if x in affirmative:
# Do something
else:
print("Canceled")
我应该使用某个列表来获得“肯定”的答案吗?我知道 Python 有类似string.uppercase
和string.lowercase
用于预先确定的变量列表的东西。是否有应视为“是”答案的答案列表?