Computer Science, asked by vishaltalla2, 2 months ago

Write a program to check whether a person is senior citizen or not (python)

Answers

Answered by Anonymous
5

Answer:

age = int( input() )

if( age >= 60 ) :

   print( "Senior citizen")

Explanation:

Answered by yojoshiv
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