码迷,mamicode.com
首页 > 编程语言 > 详细

python 字符串数组互转

时间:2016-02-17 19:19:05      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:python

字符串转数组
str = ‘1,2,3‘
arr = str.split(‘,‘)

数组转字符串
arr = [‘a‘,‘b‘]
str = ‘,‘.join(arr)

arr = [1,2,3]
str = ‘,‘.join(str(i) for i in b)

本文出自 “我的运维时光” 博客,请务必保留此出处http://aaronsa.blog.51cto.com/5157083/1742781

python 字符串数组互转

标签:python

原文地址:http://aaronsa.blog.51cto.com/5157083/1742781

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!