Re: [Tutor] Need script help with concept

2011-06-17 Thread Noah Hall
On Sat, Jun 18, 2011 at 2:13 AM, Corey Richardson wrote: > "Noah Hall" wrote > >> Of course, if you mean *completely in-place replace* the question, >> then you >> will need something like ncurses (if on Linux)  - >> http://docs.python.org/library/curses.html > > There also exists urwid, which is

Re: [Tutor] Need script help with concept

2011-06-17 Thread Corey Richardson
"Noah Hall" wrote Of course, if you mean *completely in-place replace* the question, then you will need something like ncurses (if on Linux) - http://docs.python.org/library/curses.html There also exists urwid, which is multiplatform, and is also less painful to use. I hear there is a port

Re: [Tutor] Need script help with concept

2011-06-17 Thread Alan Gauld
"Noah Hall" wrote Of course, if you mean *completely in-place replace* the question, then you will need something like ncurses (if on Linux) - http://docs.python.org/library/curses.html Well, for this you could just use a lot of print statements(in a loop) or print a lot of newlines... cur

Re: [Tutor] Need script help with concept

2011-06-17 Thread Noah Hall
On Fri, Jun 17, 2011 at 11:34 PM, Victor wrote: > I am in the process of building a script but I do not know if what I am > trying to do is possible. So, long story short, I need help. > > The concept: > I am want to be able to ask the user a series of questions in the program > window. > > But h