python 列表转换成字符串

python中的列表list = ['1','2','3','4']转成str型'1,2,3,4'

','.join(list)

原文地址:https://www.cnblogs.com/mingaixin/p/2877008.html