How to make a password system on Python (Tutorial)!
11/25/2021
Today I will show you how to make a basic password system on Python!
password = ""
while (password != Password):
print ("Whats your password?")
password = input().lower()
if password == "rant":
print ("Access Granted")
notes = input()
print ("Notes: " + notes)
else:
print ("Access Denied")
Comments