python怎么将用户输入的字符串转为数组
2个回答
展开全部
用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(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获取的是字符串,怎么弄?可以用我那个例子写出过程吗?我没理解到你说的意思
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询