python 字符串数组互转
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了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 字符串数组互转的主要内容,如果未能解决你的问题,请参考以下文章