# list -- 列表 c = [1, 2, 3] print(type(c)) # tuple -- 元组 d = (1, 2, 3) print(type(d)) # set -- 集合 e = {10, 20, 30} print(type(e)) # dict -- 字典 键值对 f = {'name': 'zs', 'age': '19', 'school': '三中'} print(type(f))