435243 发表于 2016-7-4 10:10:21

Python - 列表与字典相互转换

字符串转列表
s = 'abc'
a = list(s)
['a','b','c']


列表转为字符串
''.join(a)


字符串转换为元组
s='abc'
t = tuple(s)

元组转换为字符串
''.join(t)


列表转换为元组
l = ['a','b','c']
tuple(l)


元组转换为列表
t = ('a','b','c')
list(t)
['a','b','c']


字典转换为列表
dic={'a':1,'b':2}
dic.items()
[('a',1),('b',2)]
列表转换为字典
list1 = dic.items()
dict(list1)

页: [1]
查看完整版本: Python - 列表与字典相互转换