如何在if语句中退出python脚本

how to exit a python script in an if statement

我正在使用python 3.2,并尝试在用户输入了他们不想继续的内容后退出它,是否有代码可以在while循环中的if语句中退出它?我已经尝试过使用exit()sys.exit()sys.quit()quit(),并提高SystemExit


这对我来说很好:

1
2
3
4
5
6
7
while True:
   answer = input('Do you want to continue?:')
   if answer.lower().startswith("y"):
      print("ok, carry on then")
   elif answer.lower().startswith("n"):
      print("sayonara, Robocop")
      exit()

编辑:在python 3.2中使用input,而不是raw_input