python怎么把一个列表内容为数字型变为字符串型

  list(map(str,a))     >>> a = [1,2,3]     >>> list(map(str,a))     ['1', '2', '3']
相关文章
相关标签/搜索