在Python中,清屏命令的最佳實踐是使用os
模塊的system()
函數調用系統的清屏命令
import os
def clear_screen():
os.system('cls' if os.name == 'nt' else 'clear')
# 使用示例
print("This is a sample text.")
input("Press Enter to clear the screen.")
clear_screen()
print("The screen has been cleared.")
在這個示例中,我們首先導入os
模塊,然后定義一個名為clear_screen
的函數。這個函數使用os.system()
調用系統的清屏命令。對于Windows系統,我們使用cls
命令,而對于其他系統(如Linux和macOS),我們使用clear
命令。
在示例的最后,我們展示了如何使用clear_screen
函數來在用戶按下回車鍵后清屏。