python str dict list 轉換

weixin_33936401發表於2017-05-12

1、字典(dict)

dict = {‘name’: ‘Zara’, ‘age’: 7, ‘class’: ‘First’}

1.1 字典——字串

type(str(dict))

1.2 字典——元組

tuple(dict)

1.3 字典——元組

tuple(dict.values())

1.4 字典——列表

list(dict)

1.5 字典——列表

dict.values

2、元組

tup=(1, 2, 3, 4, 5)

2.1 元組——字串

tup.__str__()

2.2 元組——列表

 list(tup)

2.3 元組不可以轉為字典

3、列表

nums=[1, 3, 5, 7, 8, 13, 20];

3.1 列表——字串

str(nums)

3.2 列表——元組

tuple(nums)

3.3 列表不可以轉為字典

4、字串

4.1 字串——元組

tuple(eval("(1,2,3)"))

4.2 字串——列表

 list(eval("(1,2,3)"))

4.3 字串——字典

type(eval("{'name':'ljq', 'age':24}"))

from:http://blog.csdn.net/violet_echo_0908/article/details/52486689

相關文章