Advertisement
Guest User

Untitled

a guest
Oct 2nd, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. def menu():
  2. print "Hello, and welcome to Uplink International. If you already have an\
  3. account, press 1 to log in, or if you are a new user, press 2 to create an account.\
  4. Press 0 to exit."
  5. choice = input('What would you like to do? ')
  6. print ""
  7. return choice
  8. menu()
  9. if choice == 0:
  10. print "Goodbye."
  11. exit
  12. elif choice == 1:
  13. print "Please enter your username and password."
  14. print " "
  15. username = raw_input('Username: ')
  16. password = raw_input('Password: ')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement