Python怎么将数字数组转为字符数组

例如[1,2,3]转化为['1','2','3']... 例如[1,2,3]转化为['1','2','3'] 展开
 我来答
hjuj_91
2015-06-24 · TA获得超过328个赞
知道小有建树答主
回答量:180
采纳率:0%
帮助的人:147万
展开全部

用map函数

文档


map(function, iterable, ...)

Apply function to every item of iterable and return a list of the results. If additional iterable arguments are passed, functionmust take that many arguments and is applied to the items from all iterables in parallel. If one iterable is shorter than another it is assumed to be extended with None items. If function is None, the identity function is assumed; if there are multiple arguments, map() returns a list consisting of tuples containing the corresponding items from all iterables (a kind of transpose operation). The iterable arguments may be a sequence or any iterable object; the result is always a list.

a = [1,2,3,4]
s = map(str,a)
蒲公英随风飘舞哈
2013-10-06 · TA获得超过1431个赞
知道小有建树答主
回答量:324
采纳率:0%
帮助的人:526万
展开全部
可以用python的list comprehension

[str(x) for x in [1,2,3]]
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
百度网友57c441c
2013-10-06 · TA获得超过307个赞
知道小有建树答主
回答量:286
采纳率:100%
帮助的人:219万
展开全部
a=[1,2,3]
b=[str(item) for item in a]
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(1)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式