#-*-coding:utf-8-*-
#1、字典
dict =
print type(str(dict)), str(dict)
#轉為字串,返回:
print tuple(dict)
#轉為元組,返回:('age', 'name', 'class')
print tuple(dict.values())
#轉為元組,返回:(7, 'zara', 'first')
print list(dict)
#獲取字典鍵的列表,返回:['age', 'name', 'class']
print dict.values
#獲取字典值的列表
#2、元組
tup = (1, 2, 3, 4, 5)
print tup.__str__()
#轉為字串,返回:(1, 2, 3, 4, 5)
print list(tup)
#轉為列表,返回:[1, 2, 3, 4, 5]
#元組不可以轉為字典
#3、列表
nums = [1, 3, 5, 7, 8, 13, 20]
print str(nums)
#轉為字串,返回:[1, 3, 5, 7, 8, 13, 20]
print tuple(nums)
#列表轉為元組,返回:(1, 3, 5, 7, 8, 13, 20)
#列表不可以轉為字典
#4、字串
print tuple(eval("(1,2,3)"))
#字串轉為元組,返回:(1, 2, 3)
print list(eval("(1,2,3)"))
#字串轉為列表,返回:[1, 2, 3]
print type(eval(""))
#字串轉為字典,返回:
python字串列表字典相互轉換
字串轉換成字典 json越來越流行,通過python獲取到json格式的字串後,可以通過eval函式轉換成dict格式或者list格式 a b eval a b type b name import json c json.loads a type c name 支援字串和數字,其餘格式的好像不支援...
python字串 元組 列表 字典互轉
coding utf 8 1 字典 dict 字典轉為字串,返回 print type str dict str dict 字典可以轉為元組,返回 age name class print tuple dict 字典可以轉為元組,返回 7,zara first print tuple dict.va...
python字串 元組 列表 字典互轉
coding utf 8 1 字典 dict 字典轉為字串,返回 print type str dict str dict 字典可以轉為元組,返回 age name class print tuple dict 字典可以轉為元組,返回 7,zara first print tuple dict.va...