Thread
:
C++ Question
View Single Post
Reply
Posted 2003-11-06, 09:46 PM in reply to
RaZ
's post
"C++ Question"
Import the os module and then you can use the system function you
would normaly use to clear the screen in your os.
In linux:
import os
os.system('clear')
In dos/windows:
import os
os.system('cls')
Last edited by Demosthenes; 2003-11-06 at
10:04 PM
.
Profile
PM
WWW
Search
Demosthenes