python怎麼把一個列表內容爲數字型變爲字符串型

  list(map(str,a))     >>> a = [1,2,3]     >>> list(map(str,a))     ['1', '2', '3']
相關文章
相關標籤/搜索