我有一个变量:
row='saint george 1739 1799 violin concerti g 029 039 050 symphonie concertante for two violins g 024 bertrand cervera in 024 039 christophe guiot in 024 029 and thibault vieux violin soloists orchestre les archets de paris'
我这样做:
textwrap.fill(row,55)
我想要一些列表line
来line[0]='saint george 1739 1799 violin concerti g 029 039 050'
和line[1]='symphonie concertante for two violins g 024 bertrand'
等.....
请帮我从textwrap转换成列表
请注意textwrap按\n
答案 0 :(得分:1)
使用textwrap.wrap
代替textwrap.fill
答案 1 :(得分:1)
textwrap.wrap
返回一个列表。为什么不使用它?
textwrap.fill(text, ...)
相当于"\n".join(wrap(text, ...))
。正如docs中所述。
答案 2 :(得分:1)