python 字串,元組, 列表,字典之間的轉換

2022-09-07 19:09:12 字數 1212 閱讀 5739

1

#-*-coding:utf-8-*-23

#1、字典

4 dict = 56

#字典轉為字串,返回:

7print

type(str(dict)), str(dict)89

#字典可以轉為元組,返回:('age', 'name', 'class')

10print

tuple(dict)11#

字典可以轉為元組,返回:(7, 'zara', 'first')

12print

tuple(dict.values())

1314

#字典轉為列表,返回:['age', 'name', 'class']

15print

list(dict)16#

字典轉為列表

17print

dict.values

1819

#2、元組

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

2122

#元組轉為字串,返回:(1, 2, 3, 4, 5)

23print tup.__str__

()2425#

元組轉為列表,返回:[1, 2, 3, 4, 5]

26print

list(tup)

2728

#元組不可以轉為字典

2930

#3、列表

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

3233

#列表轉為字串,返回:[1, 3, 5, 7, 8, 13, 20]

34print

str(nums)

3536

#列表轉為元組,返回:(1, 3, 5, 7, 8, 13, 20)

37print

tuple(nums)

3839

#列表不可以轉為字典

4041

#4、字串

4243

#字串轉為元組,返回:(1, 2, 3)

44print tuple(eval("

(1,2,3)"))

45#字串轉為列表,返回:[1, 2, 3]

46print list(eval("

(1,2,3)"))

47#字串轉為字典,返回:

48print type(eval("

"))

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...

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...