'F' → Fullscreen
Create a new Python program named 1-6-interpolation.
name and age variables.name = "Anthony"age = 35
print(f"My name is {name} and I am {age} years old.")#score and bonus variables.name = "Anthony"age = 35
print(f"My name is {name} and I am {age} years old.")
score = 40bonus = 10
print(f"Your final score is {score + bonus} points.")#favorite_color and favorite_number variables.name = "Anthony"age = 35
print(f"My name is {name} and I am {age} years old.")
score = 40bonus = 10
print(f"Your final score is {score + bonus} points.")
favorite_color = "green"favorite_number = 7
print(f"My favorite color is {favorite_color} and my favorite number is {favorite_number}.")#print() statement from Activity 1.5 and rewrite it as an f-string.Verify your program works correctly.
My name is Anthony and I am 35 years old.Your final score is 50 points.My favorite color is green and my favorite number is 7.Answer the following questions before submitting your work.
print()?{score + bonus}, inside an f-string's curly braces?Submit the required files to the appropriate dropbox.