如何终止Python脚本 Python中二分查找 在Python中如何判断运行的是什么操作系统 如何终止Python脚本 方法1-使用模块sys.exit() import sys sys.exit() 方法2-使用内置函数quit() #do stuff if this == that: quit() 方法3-抛出异常 raise SystemExit Python中二分查找 在Python中如何判断运行的是什么操作系统