python clear screen的方法

 

1、
for i in xrange( 500 ) :
print

2、
from subprocess import call
def clear():
call('clear');

clear();

3、importos,sys
sys.stdout.write(os.popen('clear').read())

4、
import os
os.system('clear')

 

你可能感兴趣的:(python clear screen的方法)