Advertisement
Adm1n_0v3rride

getpass.py

Mar 6th, 2018
433
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. #!/usr/bin/env python3
  2.  
  3. import getpass
  4.  
  5. a = getpass.getpass(prompt = 'Password: ')
  6.  
  7. if a == 'Golden':
  8.     print("Hello")
  9. else:
  10.     print("Sorry")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement