python 切割字符串 指定长度

import re
string = "1122334455"
print(re.findall(".{2}",string))

python 切割字符串 指定长度_第1张图片

 

你可能感兴趣的:(python,python,字符串,指定长度)