Python3 features Numbers(int,float,complex), String, Lists, Tuples, Dictionary and Sets type of data. long
interger type numbers from python2 is no longer required. Below are examples of all python3 data types:
>>> x = 10 # <class 'int'>
>>> x = 10.0 # <class 'float'>
>>> x = 2+3j # <class 'complex'>
>>> x.real # 2.0
>>> x.imag # 3.0
>>> x = "hello @1234#" # <class 'str'>
>>> x = [1,2,3] # <class 'list'>
>>> x = (1,2,3) # <class 'tuple'>
>>> x = {1:2,2:3} # <class 'dict'>
>>> x = {1,2,3} # <class 'set'>