python 固定长度分割字符串
程序员文章站
2022-04-06 15:33:12
...
def cut_text(text,lenth):
textArr = re.findall('.{'+str(lenth)+'}', text)
textArr.append(text[(len(textArr)*lenth):])
return textArr
print(cut_text('123456789abcdefg',3))
['123', '456', '789', 'abc', 'def', 'g']
上一篇: CSP练习3:201812-01小明上学