摘要: 一、list转字符串 命令:''.join(list)其中,引号中是字符之间的分割符,如“,”,“;”,“\t”等等如:list = [1, 2, 3, 4, 5]''.join(list) 结果即为:12345','.join(list) 结果即为:1,2,3,4,5 二、字符串转list pri 阅读全文
posted @ 2017-10-04 20:35 CodingIsBeautiful 阅读(84601) 评论(3) 推荐(2) 编辑