这是一个简单的菜单。如果我输入错误的数字或没有脚本崩溃。
print "1) menu 1"
print "2) menu 2"
print "q) quit"
choice = raw_input("?> ")
while choice is not 'q' or 'Q':
脚本从这里循环打印消息
if choice == '1':
print "menu1"
相同的循环在这里
elif choice == '2':
print "menu2"
else:
print "invalid choice"
# want to start the input question again from here
print "breaked out of the loop"