Assign to the variable age number 20.
Using the age variable and the print() function print to the console the following text: I am 20 years old.
Output: I am 20 years old.
age = 20 print("I am {} years old.".format(age))