Objective
Develop a Python program to prompt the user for their username and password (both should be strings) and repeat the prompt as many times as necessary until the entered name is "username" and the password is "password".
Example Python Exercise
Show Python Code
# Prompt the user for their username and password and keep asking until correct
while True:
username = input("Enter your username: ")
password = input("Enter your password: ")
# Check if the entered username and password are correct
if username == "username" and password == "password":
print("Access granted")
break
else:
print("Invalid username or password. Please try again.")
Output
Enter your username: admin
Enter your password: 1234
Invalid username or password. Please try again.
Enter your username: username
Enter your password: 1234
Invalid username or password. Please try again.
Enter your username: username
Enter your password: password
Access granted
Share this Python Exercise