Menu

(Solved) : Complete Following Code Python Instructions Assign Integer Variable Named Mycurrentage Cur Q44153123 . . .

Complete the following code in python.

Instructions

  1. Assign an integer variable named myCurrentAge with your currentage in years.
  2. Assign an integer variable named currentYear with the value ofthe current year. Use four digits for the year.
  3. Execute the program and ensure the output is correct.

# This program calculates your age in the year 2050.
# Input: None
# Output: Your current age followed by your age in 2050

# Create your variables here

myNewAge = myCurrentAge + (2050 – currentYear)
print(“My Current Age is ” + str(myCurrentAge))
print(“I will be ” + str(myNewAge) + ” in 2050.”)

Expert Answer


Answer to Complete the following code in python. Instructions Assign an integer variable named myCurrentAge with your current age …

OR