在Python中,你可以使用不同的方法來清屏,具體取決于你使用的操作系統和終端類型。以下是一些常見的方法:
import os
def clear_screen():
os.system('cls')
clear_screen()
import os
def clear_screen():
os.system('clear')
clear_screen()
from IPython.display import clear_output
def clear_screen():
clear_output(wait=True)
clear_screen()
請注意,這些方法可能會因操作系統和終端類型的不同而有所差異。如果你需要更通用的解決方案,可以考慮使用第三方庫,如colorama
或termcolor
,它們提供了跨平臺的清屏功能。