摘要: def list_of_groups(init_list, children_list_len): list_of_groups = zip(*(iter(init_list),) *children_list_len) end_list = [list(i) for i in list_of_groups] count = len(init_list) % children_list_len e 阅读全文
posted @ 2019-10-09 20:11 理想几岁 阅读(355) 评论(0) 推荐(0) 编辑