Re: [Tutor] console text positioning

2005-11-13 Thread Alan Gauld
> ANSI is the standard for terminal control, so I usually code for > that, but put it in a separate module so that other terminals can > easily be accommodated. It certainly used to be under MS DOS but I find very few windows machines set up to use ANSI codes. Do you know any way t

Re: [Tutor] console text positioning

2005-11-12 Thread Chris F.A. Johnson
On Sat, 12 Nov 2005, Bojan Raicevic wrote: > I'm not sure how explain my problem, but I'll try. > > I want to make something that looks like console quiz. > So it would look somehow like this: > > print "Question one (a,b,c,d): " > #user should answer with a,b,c or d - anything else > inputed shou

Re: [Tutor] console text positioning

2005-11-12 Thread Alan Gauld
> problem** I DON'T want to see in console output > repeated questions like: > > Question one (a,b,c,d): ftbryj > Question one (a,b,c,d): asdf > Question one (a,b,c,d): a > Question two (1,2,3,4): b > Question two (1,2,3,4): 5 > Question two (1,2,3,4): 2 > Question three (a,b,c): > ... > > I wan