-1

我搜索了很多,但找不到任何命令来清除python空闲(GUI)任何人都可以帮助我并告诉我是否有任何命令可以清除python IDLE。您的帮助将不胜感激。

4

1 回答 1

1

os如果您使用命令行,您可以使用清除窗口。请注意,windows 版本不能在 Idle 中运行,只能在 Python shell 中运行。如果您使用的是 windows,最好的方法可能是简单地输出适当数量的空行。

import os

os.system('clear')
os.system('CLS') # windows

# Solution for IDLE
N = 40 # you might need to adjust this
for i in range(N):
    print "\n"
于 2013-08-27T08:27:13.667 回答