清除终端问题python

Clearing terminal probelm python

提问人:Gaenox L 提问时间:3/30/2021 最后编辑:General GrievanceGaenox L 更新时间:3/30/2021 访问量:48

问:

enter image description here

我使用以下代码来清除我的终端:

import os
import sys
clear=lambda:os.system('cls')
clear()

但它不是清除终端,而是输出一个问号。为什么?以及我如何实际清除终端。使用 python 3.9

评论

0赞 Hook 3/30/2021
您可以在 clear-terminal-in-python 中找到答案。
0赞 General Grievance 3/30/2021
当您尝试其他一些 CMD 命令(例如)时,您会得到什么?它们是否按预期工作?如果你尝试一个垃圾命令,你会得到标准的吗?dir'aaaa' is not recognized as an internal or external command...

答:

0赞 fadop3 3/30/2021 #1

尝试使用 cmd。此命令应仅适用于普通终端。