Re: clear the screen

2013-04-21 Thread Dave Angel
On 04/20/2013 10:45 PM, Yuanyuan Li wrote: How to clear the screen? For example, in the two player game. One player sets a number and the second player guesses the number. When the first player enters the number, it should be cleared so that the second number is not able to see it. My

Re: clear the screen

2013-04-21 Thread Steven D'Aprano
On Sat, 20 Apr 2013 19:45:46 -0700, Yuanyuan Li wrote: How to clear the screen? For example, in the two player game. One player sets a number and the second player guesses the number. When the first player enters the number, it should be cleared so that the second number is not able to see

clear the screen

2013-04-20 Thread Yuanyuan Li
How to clear the screen? For example, in the two player game. One player sets a number and the second player guesses the number. When the first player enters the number, it should be cleared so that the second number is not able to see it. My question is how to clear the number. Thank you

Re: clear shell screen

2007-10-30 Thread Tim Roberts
Shawn Minisall [EMAIL PROTECTED] wrote: Does anyone know how to clear the shell screen completely ? I tried import os and then os.system(clear) was said to have worked in Windows XP, but it's just bringing up another window, then it turns black and then it closes in within about a second

Re: clear shell screen

2007-10-29 Thread Shawn Minisall
anyone know how to clear the shell screen completely ? I tried import os and then os.system(clear) was said to have worked in Windows XP, but it's just bringing up another window, then it turns black and then it closes in within about a second moving the prompt at the os.system(clear) line

Re: clear shell screen

2007-10-29 Thread Gabriel Genellina
in the Knowledge Base article: code How To Performing Clear Screen (CLS) in a Console Application From http://support.microsoft.com/kb/99261 Some non-Microsoft versions of C++ provide a clrscr function for clearing the screen in a DOS application. However, there is no Win32 Application Programming

clear shell screen

2007-10-28 Thread Shawn Minisall
Does anyone know how to clear the shell screen completely ? I tried import os and then os.system(clear) was said to have worked in Windows XP, but it's just bringing up another window, then it turns black and then it closes in within about a second moving the prompt at the os.system(clear

Re: clear shell screen

2007-10-28 Thread Gabriel Genellina
En Mon, 29 Oct 2007 00:08:14 -0300, Shawn Minisall [EMAIL PROTECTED] escribi�: Does anyone know how to clear the shell screen completely ? I tried import os and then os.system(clear) was said to have worked in Windows XP, but it's just bringing up another window, then it turns black