<class 'int'> <class 'float'> <class 'str'>
a = 10 b = 3.14 c = 'hello' print(type(a)) print(type(b)) print(type(c))