Advertisement
Guest User

Untitled

a guest
Jul 10th, 2014
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. yes = "ACCEPTED"
  2. nope = "DENIED"
  3. while nope:
  4. user = input("what is your username?")
  5. password = input("What is your password?")
  6. print(user)
  7. print(password)
  8. answer = input("username:")
  9. attempt = input("password:")
  10. if user == answer and password == attempt:print(yes)
  11. break
  12. else:print(nope)
  13. print("GTFO")
  14. print("Welcome to Ricks quiz")
  15. vege = input("What is your favorite Vegetable?")
  16. person = input("Who is your favorite person on TeamSpeak?")
  17. place = input("Where are you most comfortable?")
  18. print("Ah, so you like to fuck a " + vege + " with " + person + " while at " + place)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement