Python program to take age and tell whether its infant or child or adult


Following program shows you how to take age and tell whether its infant or child or adult.
In this program we get age from user, and if the age is less than or equal to 0 it prints invalid input, and if the age is between 1 to 5 it shows infant and if the age is between 6 to 10 it prints child otherwise it prints adult.

age = int(input("Please enter your age:"))
if age <= 0:
	print('Invalid input')
elif age >= 1 and age <= 5:
	print('Infant')
elif age >= 6 and age <= 10:
	print('Child')
else:
	print('Adult')

Output:

Example1:

Please enter your age: 3
Infant

Example2:

Please enter your age: 9
Child

Example3:

Please enter your age: 43
Adult

Example4:

Please enter your age: -5
Invalid input