Advertisement
Guest User

Untitled

a guest
Mar 18th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1.  
  2. def login ():
  3. username1 = input("Please enter username: ")
  4. password1 = input("Please enter your password: ")
  5. username2 = input("Please enter your username: ")
  6. password2= input("Please enter your password: ")#where they enter the password
  7.  
  8. if password1 == "s" and password2 == "s":
  9. print("Access Granted")
  10. roll(username1, username2)#it goes to the def function roll(username 1, username 2)
  11. else:
  12. print("Access Denied")
  13. login()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement