0
What's wrong with this??
6 Respostas
+ 4
Mark Russell
See this again
Age is missing...
age = int(input())
if age>0 and age <=11:
print("Child")
elif age>=12 and age<=17:
print("Teen")
elif age>=18 and age<=64:
print("Adult")
0
Age groups
0
In the condition statement add 'age' in the composite condition
0
Nothing is wrong... it works ; )