vote up 0 vote down star

When we work with a regular windows command prompt we can clear the screen by typing cls command.

How I can do the same in IronPython console (ipy)?

flag

1 Answer

vote up 3 vote down check
import System.Console
System.Console.Clear()
link|flag
It definitely works and that why you earn +1. I just wonder if there's a shorter version. Of course, I can wrap it inside my own function. – Vadim Sep 19 at 15:22
IPython (ipython.scipy.org/moin) has 'cls' alias predefined, but I don't know whether it works with IronPython. – PiotrLegnica Sep 19 at 17:10

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.