Advertisement
Guest User

Untitled

a guest
May 21st, 2017
133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. users = {
  2.     'Pedro': '1',
  3.     'Augusto': '2'
  4.     }
  5.  
  6. username = input('username: ')
  7. password = input('password: ')
  8. assert(users[username] == password)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement