我有
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']