2010-09-05 214 views
0

可能重複:
clear terminal in python清除Python中屏幕

我如何清除窗口中的所有文本,所以它看起來像它剛剛被打開?

我聽說os.system(「清除」)的作品,但它沒有。

在Windows 7

+2

總是有'打印 '\ n' * 25';) – Seth 2010-09-05 18:18:24

回答

0

os.system('cls')

使用Python 2.6.5應工作

1

clear是Linux,我相信。 cls應該做的伎倆:

os.system("cls")