Answered step by step
Verified Expert Solution
Question
1 Approved Answer
I need help with this programming problem in python format please Task 3: Politics A person is eligible to be a US senator if they
I need help with this programming problem
in python format please
Task 3: Politics A person is eligible to be a US senator if they are least 30 years old and have been a US citizen for at least 9 years. To be a US representative, these numbers are 25 and 7, respectively Write a program that prompts the user for their age in years and their number of years of citizen ship. Display the user's eligibility for the Senate and the House. For this task write a program with three functions as follows: run4senate : Void function called from mainO with two arguments, a person's age and years of citizenship. Prints the person's eligibility. run4house): Void function called from main) with two arguments, a person's age and years of citizenship. Prints the person's eligibility mainO: Void function that prompts the user for their age and years of US citizenship and calls the two void functions. Example of output with entered text in boldface font. Enter your age in years: 28 2 Enter the number of years you have been a us citizen: 8 4 You re not eligible to run for the senate, but maybe you can run for s the House of Representatives. 6 You' re eligible to run for the House of RepresentativesStep by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started