python的shell中清屏 以及 MacOS terminal中清屏
python的shell中清屏
import os
os.system("clear")
MacOS terminal中清屏
1、清楚所有屏幕
ctrl+l
2、清楚当前输入内容
command + l
python的shell中清屏
import os
os.system("clear")
MacOS terminal中清屏
1、清楚所有屏幕
ctrl+l
2、清楚当前输入内容
command + l