Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

section 1: variables 1. program: write a python program that prompts th…

Question

section 1: variables

  1. program: write a python program that prompts the user to enter their favorite color and their birth year. store the values in variables and print a message using those variables.

Explanation:

Step1: Prompt for favorite color

favorite_color = input("Please enter your favorite color: ")

Step2: Prompt for birth year

birth_year = input("Please enter your birth year: ")

Step3: Print message using variables

print(f"Your favorite color is {favorite_color} and you were born in {birth_year}.")

Answer:

favorite_color = input("Please enter your favorite color: ")
birth_year = input("Please enter your birth year: ")
print(f"Your favorite color is {favorite_color} and you were born in {birth_year}.")