Re: [Tutor] gotoxy

2007-08-02 Thread Alan Gauld
"Robert William Hanks" <[EMAIL PROTECTED]> wrote > hi folks, is there in python a gotoxy like in pascal so i can print > stuff > in other parts of the screen? Yes there is a port of the Borland Pascal conio library module available on the Vaults of Parnassus. Dunno how up to date it is though

Re: [Tutor] gotoxy

2007-08-01 Thread Kent Johnson
Robert William Hanks wrote: > > hi folks, is there in python a gotoxy like in pascal so i can print > stuff in other parts of the screen? curses for the systems that support it http://effbot.org/zone/console-handbook.htm for Windows > what about some thing like it for the gui in windows? Whi

Re: [Tutor] gotoxy

2007-08-01 Thread Carlos Daniel Ruvalcaba Valenzuela
You should have a look at the curses module, basically gotoxy is a borland think, in linux and other unix systems there is the curses library for working with text screens. Module documentation: http://docs.python.org/lib/module-curses.html Some tutorials: http://www.amk.ca/python/howto/curses/ h