标签:span class turn list python3 文本 pre def ret
def cuttingText(text,num): textlist = [] ## 空列表 while(text!=‘‘): textlist.append(text[0:num]) text=text[num:] return textlist
关键是中间不能落下字符
标签:span class turn list python3 文本 pre def ret
原文地址:https://www.cnblogs.com/yanghao2008/p/10668248.html