>>> a = 1 >>> type(a) <class 'int'> >>> b = 1.0 >>> type(b) <class 'float'> >>> c = "2" >>> type(c) <class 'str'>