How Do You Create A Username Program In Python?
How Do You Create A Username Program In Python? Here is my code below: username = ‘Polly1220‘ password = ‘Bob’ userInput = input(“What is your username? n”) if userInput == username: a=input(“Password? n”) if a == password: print(“Welcome!”) else: print(“That is the wrong password.”) else: print(“That is the wrong username.”) How do you program names