Result Size: 625 x 571
demo_ref_type.py:
x
 
a = ('apple', 'banana', 'cherry')
b = "Hello World"
c = 33
x = type(a)
y = type(b)
z = type(c)
print(x)
print(y)
print(z)
C:\Users\My Name>python demo_type.py
<class 'tuple'>
<class 'str'>
<class 'int'>