Untitled
unknown
plain_text
4 months ago
244 B
8
Indexable
count = int(input('Número de usuarios:'))
for i in range(count):
login = input('Usuario:')
age = int(input('Edad:'))
if age >= 14:
print('Cuenta creada:', login)
else:
print('Error: menor de 14 años.')
Editor is loading...
Leave a Comment