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