我有一個很長的字符串,我想將它分解爲最大X個字符。但是,只有在一個空格處(如果字符串中的某個單詞比X個字符長,就把它放到它自己的一個空格中)。將字符串拆分爲最大長度爲X的塊 - 僅在空間拆分
我甚至不知道如何開始做這個... Pythonically
僞代碼:
declare a list
while still some string left:
take the fist X chars of the string
find the last space in that
write everything before the space to a new list entry
delete everything to the left of the space
在我的代碼了,是有一些Python模塊,可以幫助我(我不認爲pprint可以)?
我剛剛發現python有一個[textwrap](https://docs.python.org/3.5/ library/textwrap.html#module-textwrap)module;) – swenzel