list转 str. 如果列表中的元素有int型,必须先把int转成str,然后在做字符串拼接. lst = [1, 2, 3]. 将所有的int转换为str. lst1=list(map(lambda x:str(x),lst)).
確定! 回上一頁