我正在尝试清除 Python 中的代码行,并在任何方式清除 Python 的 IDLE 窗口?但是,当我在 IDLE 3.3 中运行下面的函数时,我得到了下面的错误。然而,它在 2.7.3 版本中工作。
错误
Traceback (most recent call last):
File "<pyshell#7>", line 1, in <module>
cls()
File "<pyshell#6>", line 2, in cls
print('\n') * 100
TypeError: unsupported operand type(s) for *: 'NoneType' and 'int'
代码
def cls():
print('\n') * 100