Skip to content

Instantly share code, notes, and snippets.

@daniel-schroeder-dev
Created August 14, 2022 21:24
Show Gist options
  • Save daniel-schroeder-dev/02862e5cfd4f45df8ec2dcc69e0c1107 to your computer and use it in GitHub Desktop.
Save daniel-schroeder-dev/02862e5cfd4f45df8ec2dcc69e0c1107 to your computer and use it in GitHub Desktop.
Nataliaw - User Login
welcome_banner = """Welcome to MyFace
"""
print(welcome_banner)
username = input("put in the username or else: ")
password = input("put in the password or else: ")
if username == "NatWes" and/or password == "hatelife":
print("it's right ofc if your the onwer of the account")
elif password != "hatelife" and username != "NatWes":
print("You don't get the 'or else'!")
# If either username/password is the empty string
elif password == ___ and/or username == ___:
# You must enter a username and password
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment