Loading... 在 Python3 中已经有很大一部分语句与 Python2 不互通了,运行暂停的方法也有所不同。 1. `input()`; 这种方法不用包含模块,因此这也是最常用的一种暂停手段。 Python2 中的 raw_input () 和 input () 语句在 Python3 中已经被合并到 input () 中。 在 python2 中使用 raw_input ()。 2. `os.system("pause")`; 这种方法需要包含 os 模块(import os),在 windows 下 IDLE 运行会弹出 cmd 命令行, 进行暂停操作,直接运行 .py 文件会直接在命令行中暂停。 3. `time.sleep("second")`; 这种方法需要包含 time 模块(import time),second 是自定义的时间长短,根据实际情况, 可能会发生上下浮动。 ```python import os,time print('hello world!') #input("Press enter key to close this window") os.system("pause") #time.sleep(5) ``` 本文转载自:[https://blog.csdn.net/zmz971751504/article/details/78288988](https://blog.csdn.net/zmz971751504/article/details/78288988) 感谢大家的收看,我们下期再见! 最后修改:2021 年 08 月 15 日 © 转载自他站 赞 赠人玫瑰,手留余香