Re: Help for a complete newbie

2006-04-16 Thread fatal.serpent
There was an extra space before ready. It works otherwise. Use the code below or just remove the space. Heres the fixed code: ready = raw_input("Ready to proceed ? TYPE (y)es or (n)o: ") if ready == "y": print "You are Ready" else: print "Try again" Ralph H. Stoos Jr. wrote: > All

Re: Help with python output redirection

2006-04-15 Thread fatal.serpent
Thank you. Also this script is PublicDomain right? Steven D'Aprano wrote: > On Fri, 14 Apr 2006 16:59:13 -0700, fatalserpent wrote: > > > Here is the basic code (yes, I know its tiny). > > > > x = ['print "x =", x', 'for m in x: print m'] > > print "x =", x > > for m in x: print m > > > > I want to