Python Shell 怎样清屏?
Python Shell中清屏一般有两种方法。
1、使用os模块
import os #加载os模块
os.system("cls") # windows上执行cls命令
os.system("clear") # linux上执行clear命令
上图是linux上的示例,按下回车键后,马上清除所有显示内容。
2、使用subprocess模块
import subprocess #加载subprocess模块
subprocess.call("clear") # linux上借助于call执行clear命令
subprocess.call("cls", shell=True) # windows上执行cls命令
上图是linux上的示例,按下回车键后,马上清除所有显示内容。
“命令行窗口”下可以通过如下两种方法:
1. import subprocess,subprocess.call("clear") # linux/mac,subprocess.call("cls", shell=True) # windows执行完次命令后,窗口顶部第一行会出现一个0,接下来才会是输入提示符“>>>”消除这个0的方法是在此命令前添加一个变量,例如 i=subprocess.call("cls", shell=True)
2. import os,os.system("cls") # windows,os.system("clear") # linux执行完次命令后,窗口顶部第一行也会出现一个0,接下来才会是输入提示符“>>>”消除这个0的方法同方法1“IDLE”下以上两种方式都不起作用,可以通过建立如下函数实现:def cls():print "\n"*80 #Shell 3.0+ 改为 print(('\n'*80))此函数将命令行往下移动80行,数字80可以自己任意设定这是伪清屏,只是输入满屏的空格而已。
参考:clear terminal in python
Any way to clear python's IDLE window?
http://idlex.sourceforge.net/extensions.html