Advertisement
DrAungWinHtut

login.py

Apr 27th, 2023
686
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.23 KB | None | 0 0
  1. import os
  2. name = input('What is your name: ')
  3. password = input('What is your password: ')
  4.  
  5. if name == 'aung' and password == '1234':
  6.     print('Login is correct!')
  7.     os.system('systeminfo')
  8. else:
  9.     print('Login is not correct!')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement