代码示例:(标识:python_ref_type)
python_ref_type.py
a = ('apple', 'banana', 'cherry')
b = "Hello World"
c = 55

x = type(a)
y = type(b)
z = type(c)

print(x)
print(y)
print(z)
运行结果: