本文实例讲述了Python实现字符串与数组相互转换功能。分享给大家供大家参考,具体如下:
字符串转数组
1
2
3
|
str = '1,2,3' arr = str .split( ',' ) print a |
运行结果:
数组转字符串
1
2
3
4
5
6
7
8
9
|
#方法1 arr = [ 'a' , 'b' ] str1 = ',' .join(arr) print str1 #方法2 arr = [ 1 , 2 , 3 ] #str = ','.join(str(i) for i in arr)#此处str命名与str函数冲突! str2 = ',' .join( str (i) for i in arr) print str2 |
运行结果:
希望本文所述对大家Python程序设计有所帮助。
原文链接:http://blog.csdn.net/bravezhe/article/details/7249147