共计 293 个字符,预计需要花费 1 分钟才能阅读完成。
在 Python 中,要清空 shell 界面可以使用以下两种方法。
- 使用
os.system
函数调用系统命令清空 shell 界面。
import os
def clear():
os.system('cls' if os.name == 'nt' else 'clear')
clear()
- 使用
print
函数打印特殊的控制字符\033c
清空 shell 界面。
def clear():
print('\033c', end='')
clear()
这两种方法都可以在 Windows 和 Unix 系统上使用。
丸趣 TV 网 – 提供最优质的资源集合!
正文完