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
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