a = type(1) b = type(1.4) c = type(1j) print(a,b,c) # Output : <class 'int'> <class 'float'> <class 'complex'>