def cuttingText(text,num): textlist = [] ## 空列表 while(text!=''): textlist.append(text[0:num]) text=text[num:] return textlist
关键是中间不能落下字符