Python textwrap.wrap断行没有空格

时间:2017-03-31 18:06:13

标签: python string textwrapping

我有

import textwrap
s = 'AG1   2470.1AUG   2470.1SEP   2466.4OCT   2459.3NOV   2446.8DEC   2431.1'
textwrap.wrap(s, width=61, break_long_words = True, replace_whitespace=False, drop_whitespace = False)

['AG1   2470.1AUG   2470.1SEP   2466.4OCT   2459.3NOV   ', '2446.8DEC   2431.1']

我想要

['AG1   2470.1AUG   2470.1SEP   2466.4OCT   2459.3NOV   2446.8', 'DEC   2431.1']

当没有空格时,我无法打破这条线。

但这很有效,

s = 'aaaa'
textwrap.wrap(s, width=2, break_long_words = True, replace_whitespace=False, drop_whitespace = False)

['aa', 'aa']

0 个答案:

没有答案