Tokxatron
From Programpedia
name = raw_input("What is your name? ") print "Hello", name, "- welcome to Tokxatron." setpassword = raw_input("Please set a password:") print "Your password is", setpassword, "do not forget it." password = raw_input("Enter password: ") if name == name: if password == setpassword: print 'Password correct, welcome to Tokxatron.' else: print 'Password incorrect, access denied.' else: print 'Password incorrect, access denied.'