列表、元组和 字符串一、列表 简单数据类型: int 整型 float 浮点型 bool 布尔型容器数据类型: list 列表 tuple 元组 dict 字典 set 集合 str 字符串1、列表定义: [元素1,元素2,,,元素n]2、列表的创建a=[1,2,3,4,5,6,7]print(type(a))b=['t','r','a','c','e','y']print(b,type( P...