Computer Science, asked by diljotsinghdhillon, 1 year ago

write a Python program to find person is senior citizen or not input page​

Answers

Answered by inboxsgk
101

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

Answered by stefangonzalez246
25

To find the person is senior citizen or not using Python program.

Using if...else condition in the program,

Input the age:

age = int ( input ( "Enter the age of the person: " ) )

Condition to check whether the person is senior citizenship or not:

if age >= 60

  status = " Senior citizenship "

else :

       status = " Not a senior citizenship "

print ( " The person is ", status )

Sample Output:

Enter the age of the person: 65

The person is Senior citizenship

To learn more...

brainly.in/question/12150015

Similar questions