#Python Data Types x = 5 x = "Hello World" x = 20 x = 20.5 x = 1j x = ["apple", "banana", "cherry"] x = ("apple", "banana", "cherry") x = range(6) x = {"name" : "John", "age" : 36} x = {"apple", "banana", "cherry"} x = frozenset({"apple", "banana", "cherry"}) x = True x = b"Hello" x = bytearray(5) x = memoryview(bytes(5)) x = None #----------------------------------------------- #Setting the Specific Data Type x = str("Hello World") x = int(20) x = float(20.5) x = complex(1j) x = list(("apple", "banana", "cherry")) x = tuple(("apple", "banana", "cherry")) x = range(6) x = dict(name="John", age=36) x = set(("apple", "banana", "cherry")) x = frozenset(("apple", "banana", "cherry")) x = bool(5) x = bytes(5) x = bytearray(5) x = memoryview(bytes(5)) print(type(x))