Python3使运行暂停的方法
2020-12-13 02:40
标签:sdn python2 直接 包含 article 定义 sys cmd命令 https 在Python3中已经有很大一部分语句与Python2不互通了,运行暂停的方法也有所不同。 1、input(); 这种方法不用包含模块,因此这也是最常用的一种暂停手段。 Python2中的raw_input()和input()语句在Python3中已经被合并到input()中。 2、os.system("pause"); 这种方法需要包含os模块(import os),在windows下IDLE运行会弹出cmd命令行, 进行暂停操作,直接运行.py文件会直接在命令行中暂停。 3、time.sleep("second"); 这种方法需要包含time模块(import time),second是自定义的时间长短,根据实际情况, 可能会发生上下浮动。 Python3使运行暂停的方法 标签:sdn python2 直接 包含 article 定义 sys cmd命令 https 原文地址:https://www.cnblogs.com/cbugs/p/11047833.html
---------------------
原文:https://blog.csdn.net/zmz971751504/article/details/78288988