int 整形
float 浮点型
str 字符串
bool 布尔类型
# bool 类型
a = True
aa = False
print(type(a))
list 列表
b = [10, 20, 30]
print(type(b))
tuple 元组
# tuple -- 元组
c = (10, 20, 30)
print(type(c))
set 集合
# set -- 集合
d = {10, 20, 30}
print(type(d))
dict 字典
# dict -- 字典
e = {'name': 'tom', 'age': 18}
print(type(e))