Re: os.system('cls')

2008-12-25 Thread Chris Gonnerman
en etc. and found that os.system('cls') works for this. I was just > wondering where I can find al the commands which can be used for > os.system(). I searched with google but I didn't find an answer. In the > official python tutorial it says os.system('command') e

Re: os.system('cls')

2008-12-25 Thread D'Arcy J.M. Cain
On Thu, 25 Dec 2008 13:11:09 +0100 "Dennis van Oosterhout" wrote: > Btw...does that mean that system('cls') only works on Windows...or to > say it otherwise: the program isn't platform independant? Exactly - sort of. Unless, of course, you have a program called "cls" installed on other platforms

RE: os.system('cls')

2008-12-25 Thread Barak, Ron
Hi Dennis, print dir(os.system) print os.__dict__ might help Bye, Ron. From: Dennis van Oosterhout [mailto:de.slotenzwem...@gmail.com] Sent: Thursday, December 25, 2008 12:22 To: python-list@python.org Subject: os.system('cls') Hi there! I was

Re: os.system('cls')

2008-12-25 Thread Python
2008/12/25 Dennis van Oosterhout : Hello Arno, thanks for the explanation! I have one more question: on the python site it says it's better to replace the system commands by subprocess and Popen. Now I searched for some good example for my specific case (as I have no idea how it should work

Re: os.system('cls')

2008-12-25 Thread Jeremiah Dodds
On Thu, Dec 25, 2008 at 7:11 AM, Dennis van Oosterhout < de.slotenzwem...@gmail.com> wrote: > Btw...does that mean that system('cls') only works on Windows...or to > say it otherwise: the program isn't platform independant? > > Yes. -- http://mail.python.org/mailman/listinfo/python-list

Re: os.system('cls')

2008-12-25 Thread Python
On 25 dec 2008, at 12:56, Dennis van Oosterhout wrote: Hello Arno, thanks for the explanation! I have one more question: on the python site it says it's better to replace the system commands by subprocess and Popen. Now I searched for some good example for my specific case (as I have no idea h

Re: os.system('cls')

2008-12-25 Thread Python
On 25 dec 2008, at 11:22, Dennis van Oosterhout wrote: Hi there! I was searching for a way to clear the 'DOS screen'/ command screen etc. and found that os.system('cls') works for this. I was just wondering where I can find al the commands which can be used for os.syste

Re: os.system('cls')

2008-12-25 Thread Dennis van Oosterhout
t; 2008/12/25 Python >> >> On 25 dec 2008, at 11:22, Dennis van Oosterhout wrote: >> >>> Hi there! I was searching for a way to clear the 'DOS screen'/command >>> screen etc. and found that os.system('cls') works for this. I was just >>

Re: os.system('cls')

2008-12-25 Thread Dennis van Oosterhout
irst answer, Devilly 2008/12/25 Python > > On 25 dec 2008, at 11:22, Dennis van Oosterhout wrote: > >> Hi there! I was searching for a way to clear the 'DOS screen'/command screen >> etc. and found that os.system('cls') works for this. I was just wonderin

os.system('cls')

2008-12-25 Thread Dennis van Oosterhout
Hi there! I was searching for a way to clear the 'DOS screen'/command screen etc. and found that os.system('cls') works for this. I was just wondering where I can find al the commands which can be used for os.system(). I searched with google but I didn't find an answe