当然可以!在 Python 中,你可以使用以下代码来清屏:
import os
def clear_screen():
os.system('cls' if os.name == 'nt' else 'clear')
clear_screen()
这段代码定义了一个名为 clear_screen
的函数,它会根据你的操作系统(Windows 或 macOS/Linux)调用相应的清屏命令。在 Windows 上,它使用 cls
命令,而在 macOS 和 Linux 上,它使用 clear
命令。然后调用这个函数即可清屏。