Heim >Backend-Entwicklung >Python-Tutorial >python 不关闭控制台的实现方法

python 不关闭控制台的实现方法

WBOY
WBOYOriginal
2016-06-06 11:27:291641Durchsuche

直接打开dos窗口,再执行python程序
在脚本的最后一行后面添加:raw_input()语句,这样直到按下回车键,窗口才关闭。
使用time模块的sleep函数,它有一个参数,传入数字,其单位是秒:

代码如下:


import time
print "aaaaaaaaaaa"
time.sleep(150);


如果控制台里面的行数过多过乱,我们可以使用下面语句进行清屏:

代码如下:


import os
#linux
os.system('cls')
#windows
os.system('clear')


但是交互运行(非脚本运行)敲上述代码可能会多打印返回值 0

代码如下:


import os
#linux
os.system('echo "Press any key to continue..." && read')
#windows
os.system('pause')

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn