Advertisement
Spocoman

02. Password

Dec 27th, 2021
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.13 KB | None | 0 0
  1. user = input()
  2. password = input()
  3.  
  4. while True:
  5.     if password == input():
  6.         print(f'Welcome {user}!')
  7.         break
  8.  
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement