1、列表与字符串转换
列表转字符串:
将列表中的内容拼接成一个字符串
image
将列表中的值转成字符串
image
字符串转列表:
用eval转换
image
将字符串每个字符转成列表中的值
image
将字符串按分割成列表
image
2、列表与字典转换
列表转字典:
将两个列表转成字典
image
将嵌套列表转为字典
image
字典转列表:
字典中键、值转为列表
image
3、字典与字符串转换
字符串转字典:
用eval转换
image
用json.loads 转换
image
字典转字符串:
用json.dumps 转换
image
强转换
image