请教:请问python有没有类似matlab的clc命令

请教:请问python有没有类似matlab的clc命令

请问python用gedit编译输出的output我希望清空就像在 matlab那样用clc可以清空
有这样的命令吗,用哪个命令
gedit?编译?汗……
print "\n" * 100


QUOTE:
原帖由 jjj137 于 2008-11-10 19:44 发表
gedit?编译?汗……
print "\n" * 100

这都行
但也不愧为一个字好方法
谢谢
经检验
还是不是太行。。。
因为当程序出现错误的时候
就不输出回车
这样还是分不清错误
linux:
os.system("clear“)
windows:
os.system("cls")
import os

os.system("cls")

然后显示这个错误?为什么呢?

Traceback (most recent call last):
  File "/usr/lib/gedit-2/plugins/pythonconsole/console.py", line 272, in __run
    exec command in self.namespace
  File "<string>", line 1
     os.system("clear")
                      ^
SyntaxError: invalid syntax
晕,括号要用半角的。
>>>os.system("clear")
256

为什么?256??