在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系统上使用。