Here are the solutions to the printing practice:
print("My Name")
print("Blue", "Green", "Red")
print(26 * 66 + 13)
print(6804 / 162)
print(2 ** 8)
print("66+33")
66+33
So putting a mathematical expression in double quotes prints the expression as a string, rather than evaluating it.