+ 2
Age group
age = int(input()) if age <= 11: print ("Child") else: if age >= 12 and age <= 17: print ("Teen") else: if age >=18 and age <= 64: print ("Adult")
1 Answer
0
Age group
age = int(input())
if age <= 11:
print ("Child")
elif age <= 17:
print ("Teen")
else:
print ("Adult")
Hot today
What's wrong? :(
1 Votes
Why won't my image display
0 Votes
How the answer is 50?
0 Votes
Number of Ones ( C++ ) question!
1 Votes