#coding=utf-8
#一、字典
dict = {'name': 'Zara', 'age': 7, 'class': 'First'}utf-8
#字典轉爲字符串,返回:<type 'str'> {'age': 7, 'name': 'Zara', 'class': 'First'}
print type(str(dict)), str(dict)字符串
#字典能夠轉爲元組,返回:('age', 'name', 'class')
print tuple(dict)
#字典能夠轉爲元組,返回:(7, 'Zara', 'First')
print tuple(dict.values())class
#字典轉爲列表,返回:['age', 'name', 'class']
print list(dict)
#字典轉爲列表
print list(dict.values())coding
#二、元組
tup=(1, 2, 3, 4, 5)dict
#元組轉爲字符串,返回:(1, 2, 3, 4, 5)
print tup.__str__()di
#元組轉爲列表,返回:[1, 2, 3, 4, 5]
print list(tup)co
#元組不能夠轉爲字典字典
#三、列表
nums=[1, 3, 5, 7, 8, 13, 20];字符
#列表轉爲字符串,返回:[1, 3, 5, 7, 8, 13, 20]
print str(nums)eval
#列表轉爲元組,返回:(1, 3, 5, 7, 8, 13, 20)
print tuple(nums)
#列表不能夠轉爲字典
#四、字符串
#字符串轉爲元組,返回:(1, 2, 3)
print tuple(eval("(1,2,3)"))
#字符串轉爲列表,返回:[1, 2, 3]
print list(eval("(1,2,3)"))
#字符串轉爲字典,返回:<type 'dict'>
print type(eval("{'name':'ljq', 'age':24}"))
#type爲strprint type("(1,2,3)")print type("[1,2,3]")print type("{'name':'ljq', 'age':24}")#type爲tupleprint type(eval("(1,2,3)"))#eval將字符串str當成有效的表達式來求值並返回計算結果。