这里是 Python 新手,试图将测验输入仅限于数字 1,2 或 3。
如果输入文本,程序会崩溃(因为无法识别文本输入)
这是我所拥有的改编:非常欢迎任何帮助。
choice = input("Enter Choice 1,2 or 3:")
if choice == 1:
print "Your Choice is 1"
elif choice == 2:
print "Your Choice is 2"
elif choice == 3:
print "Your Choice is 3"
elif choice > 3 or choice < 1:
print "Invalid Option, you needed to type a 1, 2 or 3...."