import os
os.system('cls') # for Windows
os.system('clear') # for Linux/OS X
how to clear screen in python shell
最新推荐文章于 2025-01-02 00:00:00 发布
import os
os.system('cls') # for Windows
os.system('clear') # for Linux/OS X