Verifying a password
-
Why isn’t this code working?
Help plz👍username = input('Enter Username>>> ') if username == 'silas': print('Access granted') print('Hello SILAS') elif username == 'silas': False print('Access Denied')
-
This post is deleted!last edited by
-
username = input('Enter Username>>> ') if username == 'silas': print('Access granted') print('Hello SILAS') else: print('Access Denied')