Objective
Develop a Python program that prompts the user to enter their login and password (both must be integer numbers) and repeats the prompt as many times as necessary until the entered login is "12" and the password is "1234".
Example Python Exercise
Show Python Code
# Initialize the correct login and password
correct_login = 12
correct_password = 1234
# Use a while loop to prompt the user for login and password until they are correct
while True:
# Prompt the user to enter their login
login = int(input("Please enter your login: "))
# Prompt the user to enter their password
password = int(input("Please enter your password: "))
# Check if the entered login and password are correct
if login == correct_login and password == correct_password:
print("Access granted")
break
else:
print("Incorrect login or password. Please try again.")
Output
Case 1:
Please enter your login: 12 Please enter your password: 1234
Access granted
Case 2:
Please enter your login: 11 Please enter your password: 123 Incorrect login or password. Please try again.
Share this Python Exercise