import re import math string = '123456789abcdefg' # 方法一:递归实现 text_list = [] def split_text(text, length): tmp = text[:int(length)] ...
確定! 回上一頁