1

我有一行文字,如下所示:

http://www.example.org/lexicon#13797906 http://www.monnetproject.eu/lemon#gloss an overwhelming number or amount; "a flood of requests"; "a torrent of abuse"

我想把它分成三部分,但只是使用前 2 个空格作为它们应该被分割的点。这是我正在寻找的结果:

http://www.example.org/lexicon#13797906 
http://www.monnetproject.eu/lemon#gloss 
an overwhelming number or amount; "a flood of requests"; "a torrent of abuse"

我教过 maxsplit 会起作用,但我不确定在这种情况下如何使用它

4

1 回答 1

5

str.split方法采用可选计数:

text.split(' ', 2)
于 2013-06-28T10:03:29.330 回答