In <e41ce3a3-c8cb-4cfc-ba86-462f40f32...@googlegroups.com> 
christheco...@gmail.com writes:

> On Sunday, June 23, 2013 6:18:35 PM UTC-5, christ...@gmail.com wrote:
> > How do I bring users back to beginning of user/password question once they
> > 
> > fail it? thx

> Can't seem to get this to cooperate...where does the while statement belong?

while True:
    username = raw_input("Please enter your username: ")
    password = raw_input("Please enter your password: ")

    if username == "john doe" and password == "fopwpo":
        print "Login Successful"
        break

    else:
        print "Please try again"

-- 
John Gordon                   A is for Amy, who fell down the stairs
gor...@panix.com              B is for Basil, assaulted by bears
                                -- Edward Gorey, "The Gashlycrumb Tinies"

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to