一.字符串str

1.字符串转化列表

s = 'hello python'

li = list(s)

print li

print type(s)

print type(li)1

2

3

4

5

结果

['h', 'e', 'l', 'l', 'o', ' ', 'p', 'y', 't', 'h', 'o', 'n']

1

2

3

2.字符串转化元组

s = 'hello python'

t = tuple(s)

print t

print type(s)

print type(t)1

2

3

4

5

结果

('h', 'e', 'l', 'l', 'o', ' ', 'p', 'y', 't', 'h', 'o', 'n')

1

2

3

3.字符串转化集合

s = 'hello python'

set1 = set(s)

print set1

print type(s)

print type(set1)1

2

3

4

5

结果:集合是无序的数据类型,转化集合过程中相同元素只出现一次,比如“o“

set([' ', 'e', 'h', 'l', 'o', 'n', 'p', 't', 'y'])

1

2

3

4.字符串转化字典,需要借助eval函数或者exec函数

s = '{"name":"redhat","age":"10"}'

d = eval(s)

print type(s)

print d

print type(d)1

2

3

4

5

结果

{'age': '10', 'name': 'redhat'}

1

2

3

exec函数

s = '{"name":"redhat","age":"10"}'

print type(s)

exec('c=' +s)

print c,"查看c的内容"

print "查看c的类型",type(c)1

2

3

4

5

结果

{'age': '10', 'name': 'redhat'} 查看c的内容

查看c的类型 1

2

3

二.列表list,

1.列表转化字符串

li=["hello",1,1+3j]

print type(li)

s=str(li)

print s

print type(s)1

2

3

4

5

结果

['hello', 1, (1+3j)]

1

2

3

2.列表转化元组

li=["hello",1,1+3j]

print type(li)

t=tuple(li)

print t

print type(t)1

2

3

4

5

结果

('hello', 1, (1+3j))

1

2

3

3.列表转化集合

li=["hello",1,1+3j,1,"2","3","2",3]

print type(li)

s=set(li)

print s

print type(s)1

2

3

4

5

结果:转换后集合无序,另外原列表中出现的相同的字符,没了,3是int型,’3’是字符串str型,两者不同

set([1, 3, (1+3j), '3', '2', 'hello'])

1

2

3

4.单个列表无法转化字典,两个可以借助zip实现

li1 = ['NAME', 'AGE', 'gender']

li2 = ['redhat', 10, 'M']

d= dict(zip(li1,li2))

print d,type(d)1

2

3

4

结果

{'gender': 'M', 'AGE': 10, 'NAME': 'redhat'} 1

三.元组tuple

1.元组转化字符串

t=("hello",1,1+3j,1,"2","3","2",3)

print type(t)

s=str(t)

print s

print type(s)1

2

3

4

5

结果

('hello', 1, (1+3j), 1, '2', '3', '2', 3)

1

2

3

2.元组转化列表

t=("hello",1,1+3j,1,"2","3","2",3)

print type(t)

li=list(t)

print li

print type(li)1

2

3

4

5

3.元组转化集合

t=("hello",1,1+3j,1,"2","3","2",3)

s=set(t)

print s

print type(s)1

2

3

4

结果

set([1, 3, (1+3j), '3', '2', 'hello'])

1

2

4.元组转化字典和列表相同,两个可以借助zip函数

t1 = ('NAME', 'AGE', 'gender')

t2 = ('redhat', 10, 'M')

d= dict(zip(t1,t2))

print d,type(d)1

2

3

4

结果

{'gender': 'M', 'AGE': 10, 'NAME': 'redhat'} 1

四.集合set

1.集合转化字符串str

s={1,2L,3.1,1,"hello",1+4j}

print s

print type(s)

string=str(s)

print type(string)1

2

3

4

5

结果

set([1, 2L, 3.1, (1+4j), 'hello'])

1

2

3

2.集合转化列表list

s={1,2L,3.1,1,"hello",1+4j}

print s

print type(s)

li1=list(s)

print li1

print type(li1)1

2

3

4

5

6

结果:

set([1, 2L, 3.1, (1+4j), 'hello'])

[1, 2L, 3.1, (1+4j), 'hello']

1

2

3

4

4.集合转化元组

s={1,2L,3.1,1,"hello",1+4j}

print s

print type(s)

t=tuple(s)

print t

print type(t)1

2

3

4

5

6

结果

set([1, 2L, 3.1, (1+4j), 'hello'])

(1, 2L, 3.1, (1+4j), 'hello')

1

2

3

4

4.集合转化字典

s1={1,2,3,4}

s2 = {"a","b","c"}

d=dict(zip(s1,s2))

print d

print type(d)1

2

3

4

5

结果

{1: 'a', 2: 'c', 3: 'b'}

1

2

五.字典eict

1.字典转化字符串str

把字典的keys-vlaues一起转哈化

d = dict(a=1,b=2,c=3)

print type(d)

s=str(d)

print s,type(s)1

2

3

4

结果

{'a': 1, 'c': 3, 'b': 2} 1

2

只转化字典的keys

d = dict(a=1,b=2,c=3)

print type(d)

s=str(d.keys())

print s,type(s)1

2

3

4

结果

['a', 'c', 'b'] 1

2

只转化字典的values

d = dict(a=1,b=2,c=3)

print type(d)

s=str(d.values())

print s,type(s)1

2

3

4

结果

[1, 3, 2] 1

2

2.字典转化列表list

字典转化列表默认情况下,转化的是kyes键

d = dict(a=1,b=2,c=3)

print type(d)

li=list(d)

print li,type(li)1

2

3

4

结果

['a', 'c', 'b'] 1

2

可以转化values

d = dict(a=1,b=2,c=3)

print type(d)

li=list(d.values())

print li,type(li1

2

3

4

结果

[1, 3, 2] 1

2

转化keys-values

d = dict(a=1,b=2,c=3)

print type(d)

li=list(d.iteritems())

print li,type(li)1

2

3

4

结果

[('a', 1), ('c', 3), ('b', 2)] 1

2

3.字典转化元组

同列表,默认情况下,转换keys键,其他方法同列表

d = dict(a=1,b=2,c=3)

print type(d)

t=tuple(d)

print t,type(t)1

2

3

4

结果

('a', 'c', 'b') 1

2

4.字典转集合set

默认强况下,转换keys键,其他转化同列表,元组

d = dict(a=1,b=2,c=3)

print type(d)

s1=set(d)

print s1,type(s1)1

2

3

4

结果

set(['a', 'c', 'b']) 1

2

注意:

s是字符串str,s1是字典dict

s = "{'name':'root','passwd':'123'}"

s1 = {'name':'root','passwd':'123'}

print type(s)

print s,len(s)

print type(s1)

print s1,len(s1)1

2

3

4

5

6

结果

{'name':'root','passwd':'123'} 30

{'passwd': '123', 'name': 'root'} 21

2

3

4

Logo

为开发者提供学习成长、分享交流、生态实践、资源工具等服务,帮助开发者快速成长。

更多推荐