摘要: 一、字符串与列表转换: 1、字符串转列表(分隔符截取字符串):split time_set = "0 0/3 9-11 * * ?" print(time_set.split(' ')) 输出:['0', '0/3', '9-11', '*', '*', '?'] 2、列表转字符串:join lis 阅读全文
posted @ 2021-08-20 18:21 踩泥靴 阅读(226) 评论(0) 推荐(0) 编辑