+ 1
Hola estoy intentando resolver el ejército de grupo de edad booleanos.
Esto es lo que estoy intentando age = int(input()) if age >= 0 and age < 12: print("Child") elif age > 11 and age < 18: print:("Teen") elif age > 17 and age < 65: print("Adult") elif age >= 64: print("Senior") else: print("Invalid age")
5 Respuestas
+ 4
age = int(input())
if age >= 0 and age < 12:
print("Child")
elif age > 11 and age < 18:
print("Teen")
elif age > 17 and age < 65:
print("Adult")
elif age >= 64:
print("Senior")
else:
print("Invalid age")
+ 1
if you are 18 you're still a teenager. Mabye thats it? Whats the challange description?
+ 1
la edad debe estar al mismo nivel que la declaración if.
age = int(input())
if ():
print()
hay un extra `:` en su segunda declaración impresa
print("Teen")
+ 1
Simba cómo así?
+ 1
Simba ahora entiendo todo! Y como siempre yo cometiendo errores