What will this code print?
number = 3 print (f"The number is {number}")
It throws a TypeError because the integer must be cast to a string.
TypeError
THE NUMBER IS 3
the number is 3
The number is 3