Prompt: Create a variable that will hold a float. Use the variable to get input from the user. Make sure your question to the user makes sense for collecting a value that is a float.
#Calculate yearly income
monthly_income=3657.55
months=12
yearly_income=months*monthly_income
print(‘please enter your yearly income’)
When I run the program I receive a syntax error.