我希望我的Python代码接受大写和小写输入。
我试过了casefold,但没有运气。有什么帮助吗?
advice =""
while advice !=("Yes"):
print("Would you like some advice!")
advice = input("Yes or No? ")
print("Always listen to your IT Teacher!")
我希望输入接受Yes
和yes
作为用户输入。
答案 0 :(得分:4)
你可以提出大写建议,例如:
while advice.upper() != "YES"
这样,如果用户输入大写或大写(或混音),则无关紧要。