Python Questionnaire
import time
name = input("What is your name? ")
print("")
age = int(input("What is your age? "))
print("")
people = int(input("How many people were living or staying in this house, apartment, or
mobile home on April
1, 2020? "))
print("")
income = float(input("What was your annual income in 2019? (in USD) "))
print("")
tele = int(input("What is your telephone number? (answer in only numbers) "))
print("")
gender = input("Are you a male or female? ")
print("")
race = input("What is your race? ")
print("")
year = int(input("What year were you born? "))
print("")
birth = float(input("What is your birthday? ([Link]) "))
print("")
owned = int(input("How much does this house, apartment, or mobile home cost? (Round to
the nearest
hundred thousand) "))
print("")
job = input("What is your occupation? ")
print("")
[Link](1)
print("your name is "+name+".") #this is a string example
print("")
[Link](1)
print(name+" is "+str(age)+" year old.")#this is an integer example
print("")
[Link](1)
PAGE 17