摘要: from math import ceildef split_word(lst, size): word_list = list( map(lambda x: lst[x * size:x * size + size], list(range(0, ceil(len(lst) / size))))) 阅读全文
posted @ 2022-07-28 16:55 布都御魂 阅读(16) 评论(0) 推荐(0) 编辑