Write a program to check whether a person is senior citizen or not (python)
Answers
Answered by
5
Answer:
age = int( input() )
if( age >= 60 ) :
print( "Senior citizen")
Explanation:
Answered by
4
Answer:
age = int(input("Enter age of the person"))
if age >= 60:
print("Person is a senior Citizen")
else:
print("The person is not a senior Citizen")
#Please mark this answer as brainliest if this helps you
Similar questions
Social Sciences,
1 month ago
Geography,
1 month ago
Hindi,
1 month ago
Social Sciences,
2 months ago
Math,
2 months ago
Social Sciences,
9 months ago