python中列表,元组,字符串互相转换

参考博文:http://blog.csdn.net/sruru/article/details/7803208

列表元素转换为字符串:

>>> a=['hello']
>>> b=''.join(a)
>>> b
'hello'
>>> a=['hello','python']
>>> b=''.join(a[1])
>>> 
>>> b
'python'
>>> 

列表元素转换为元组:

>>> def str2tuple(*str):
	return str

>>> a
['hello', 'python']
>>> str2tuple(a[0],a[1])
('hello', 'python')
>>> 

元组转换为字符串:

>>> a=('hello', 'python')
>>> a
('hello', 'python')
>>> ''.join(a[0])
'hello'
>>> 


元组元素转换列表:

>>> a=('hello', 'python')
>>> a
('hello', 'python')
>>> list(a)
['hello', 'python']
>>> list(a[0])
['h', 'e', 'l', 'l', 'o']
>>>


字符串转换为元组:

>>> a='hello world!'
>>> a
'hello world!'
>>> tuple(a)
('h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd', '!')
>>> str2tuple('hello world!')
('hello world!',)
>>> 


字符串转换为列表:

>>> a
'hello world!'
>>> list(a)
['h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd', '!']
>>> str2tuple(a)
('hello world!',)
>>> list(str2tuple(a))
['hello world!']
>>> 






评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值