ここでは 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...."