将文本换行到80列
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了将文本换行到80列相关的知识,希望对你有一定的参考价值。
warning: snipplr tends to escape the quotes and slashes, causing this snippet to fail when pasted verbatim.
def wrap_text(txt, col = 80): import re re.sub("/(.{1,#{col}})( +|$n?)|(.{1,#{col}})/", "13n", txt) # warning: snipplr tends to escape the quotes and slashes, causing this # snippet to fail when pasted in. return txt
以上是关于将文本换行到80列的主要内容,如果未能解决你的问题,请参考以下文章