假设我有一个字符串 "Let's split this string into many small ones" ,我希望将其拆分this,into并且ones
"Let's split this string into many small ones"
this
into
ones
这样输出看起来像这样:
["Let's split", "this string", "into many small", "ones"]
最有效的方法是什么?
python string split delimiter
delimiter ×1
python ×1
split ×1
string ×1