write a Python program to find person is senior citizen or not input page
Answers
Answered by
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
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
Social Sciences,
6 months ago
English,
6 months ago
Math,
6 months ago
Math,
1 year ago
CBSE BOARD XII,
1 year ago
Math,
1 year ago