摘要: list1 = ['组', '2023-1-1', '2023-1-2', '2023-1-3', '总业绩'] list2 = ['一组', '1', '2', '3', '6'] list3 = ['二组', '4', '5', '6', '15'] list4 = ['三组', '7', '8 阅读全文
posted @ 2023-07-11 16:45 布都御魂 阅读(18) 评论(0) 推荐(0) 编辑
摘要: list = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10] # 输出结果[1,2,3][4,5,6][7.8.9] len_list = len(list) // 3 num_list = len(list) % 3 list_all = [] for num in range(l 阅读全文
posted @ 2023-07-11 16:09 布都御魂 阅读(7) 评论(0) 推荐(0) 编辑