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