Question: # 1: Variables age = input(Enter Age: ) # 2. Variables # Using the above as a guide, complete the following line so that #
# 1: Variables
age =
input("Enter Age: ")
# 2. Variables
# Using the above as a guide, complete the following line so that
# "Enter Number of years as a US Citizen: " will appear when the script is executed citizen =
# 3. Conditional Statement
# Using the variables 'age' & 'citizen', construct a conditional statement that will check to see is the user is eligible for the Senate, House of Representatives, both or neither. To help you get started the first condition has been provided for you
if ___ >= 30 and citizen >= 9:
print ("You are eligible for the Senate and the House ")
____ age >= 25 and citizen >= __:
print ("You are eligible for the House of Representatives.")
else:
print ("You are ineligible to serve.")