Python textwrap Library - How to Preserve Line Breaks?

后端 未结 8 931
礼貌的吻别
礼貌的吻别 2021-02-04 02:19

When using Python\'s textwrap library, how can I turn this:

short line,

long line xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx
         


        
8条回答
  •  生来不讨喜
    2021-02-04 02:57

    body = '\n'.join(['\n'.join(textwrap.wrap(line, 90,
                     break_long_words=False, replace_whitespace=False))
                     for line in body.splitlines() if line.strip() != ''])
    

提交回复
热议问题