'F' → Fullscreen
Create a new Python program named 1-3-variables.
name variable (a string) and an age variable (an integer).name = "Anthony"age = 35
print(name)print(age)#favorite_color variable (a string) and a favorite_number variable (a float).print("Favorite Color:", favorite_color).print() prints them on the same line with a space in between.name = "Anthony"age = 35
print(name)print(age)
favorite_color = "green"favorite_number = 7.5
print("Favorite Color:", favorite_color)print("Favorite Number:", favorite_number)#type() to print the data type of each of your four variables.name = "Anthony"age = 35
print(name)print(age)
favorite_color = "green"favorite_number = 7.5
print("Favorite Color:", favorite_color)print("Favorite Number:", favorite_number)
print(type(name))print(type(age))print(type(favorite_color))print(type(favorite_number))#age = 35 to age = "thirty-five".Verify your program works correctly.
Anthony35Favorite Color: greenFavorite Number: 7.5<class 'str'><class 'int'><class 'str'><class 'float'>Answer the following questions before submitting your work.
type() report after you reassigned a variable to a different data type?Submit the required files to the appropriate dropbox.