Enter the appropriate Python commands to execute the functionality noted below.
Enter a simple print("enter some text here") command and press the Run Script button.
Create a variable named num whose value is a whole number.
Print the value of the num variable to the screen.
Print the string "My number is num" to the screen and substitute the value of the num variable in the correct place the string.
Ask the user to input their first name.
Print the user’s first name to the screen.
Print the string “Hello, world! My name is name!” to the screen and substitute the value of the user’s name in the string.
Ask the user to input their birth year.
Make a rough calculation of the user’s age by subtracting their birth year from the current year. Add a single line comment that explains what you are doing.
Print the string “Hello, world! My name is name and I am approximately age years old.” to the screen and substitute the user’s name and age where appropriate.
Calculate how many months the user has lived. Build a sentence that contains the answer and print it to the screen. Add a single line comment that explains what you are doing.
Calculate how many days the user has lived. Build a sentence that contains the answer and print it to the screen. Add a single line comment that explains what you are doing.
Assume the user wants to retire at age 65. Calculate the year they will retire, build a sentence that explains the year, and print it to the screen. Add single line comments that explain what you are doing wherever appropriate.