python3怎么清屏
在交互模式中使用Python,如果要清屏,可以import os,通过os.system()来调用系统命令clear或者cls来实现清屏。
>>> import os >>> os.system('clear')
但是此时shell中的状态是:
0 >>>
首行会有一个0。这个0实际上是os.system()的返回值,0是成功,非零即error code。
众多python教程,尽在云海天教程网,欢迎在线学习!
来源:PY学习网:原文地址:https://www.py.cn/article.html