これは私が持っているコードです:
choice = ""
while choice != "1" and choice != "2" and choice != "3":
choice = raw_input("pick 1, 2 or 3")
if choice == "1":
print "1 it is!"
elif choice == "2":
print "2 it is!"
elif choice == "3":
print "3 it is!"
else:
print "You should choose 1, 2 or 3"
動作している間は、特に while 句が非常に扱いにくいと感じます。もっと許容できる選択肢がある場合はどうなりますか? 句を作るためのより良い方法はありますか?