发布网友 发布时间:2022-04-19 21:21
共2个回答
热心网友 时间:2022-04-07 12:55
在python的IDLE中输入input_list = list(map(str,input())),回车,输入:dsfjd,再回车,输入print(input_list),打印的结果就是['d', 's', 'f', 'j', 'd']了。
热心网友 时间:2022-04-07 14:13
用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获取的是字符串,怎么弄?可以用我那个例子写出过程吗?我没理解到你说的意思