Objectivo
Desarrolla un programa Python que solicite al usuario su nombre de usuario y contraseña (ambos deben ser números enteros) y que continúe solicitando hasta que se ingresen los datos de usuario "12" y contraseña "1234" correctos. El usuario tendrá un máximo de tres intentos.
Ejemplo Ejercicio Python
Mostrar Código Python
# Initialize the correct login and password
correct_login = 12
correct_password = 1234
# Initialize the attempt counter
attempts = 0
# Use a while loop to prompt the user for login and password until they are correct or attempts are exhausted
while attempts < 3:
# 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.")
attempts += 1
# Check if the maximum number of attempts has been reached
if attempts == 3:
print("Maximum attempts reached. Access denied.")
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.
Please enter your login: 11
Please enter your password: 123
Incorrect login or password. Please try again.
Please enter your login: 11
Please enter your password: 123
Incorrect login or password. Please try again.
Maximum attempts reached. Access denied.
Código de Ejemplo copiado
Comparte este ejercicios Python