Write a function space_numbers() that creates four literals:
- the integer
5 - the float
5.0 - the string
'5' - the boolean
TrueReturn a tuple containing the result oftype()applied to each literal in that order.
Example
>>> space_numbers()
(int, float, str, bool)