python怎么将用户输入的字符串转为数组

如:用户输入:dsfjd转化为['d','s','f','j','d']... 如:用户输入:dsfjd
转化为['d','s','f','j','d']
展开
 我来答
444128943
2019-03-03
知道答主
回答量:1
采纳率:0%
帮助的人:767
展开全部
在python的IDLE中输入input_list = list(map(str,input())),回车,输入:dsfjd,再回车,输入print(input_list),打印的结果就是['d', 's', 'f', 'j', 'd']了。
细开桃m
2018-10-31 · TA获得超过198个赞
知道小有建树答主
回答量:183
采纳率:63%
帮助的人:29.1万
展开全部
用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)
追问
这个map的a参数本身就是一个list了,用户输入input获取的是字符串,怎么弄?可以用我那个例子写出过程吗?我没理解到你说的意思
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式