18798332503 发表于 2020-9-9 11:53:47

spilt的应用

spilt(sep = none,maxspilt=-1),sep会默认把列表里的空格或者符号改为',' ,maxspilt的默认次数怎么修改,求各位大大举列子解释一下sep和maxspilt!

1q23w31 发表于 2020-9-9 12:04:50

http://c.biancheng.net/view/4276.html
看这个

sunrise085 发表于 2020-9-9 12:14:57

这两个是关键字参数,直接用关键字写出来就可以了,或者就按顺序给出来。
>>> a='1+2+3+4+5'
>>> a.split(sep='+',maxsplit=2)
['1', '2', '3+4+5']
>>> a.split('+',2)
['1', '2', '3+4+5']

18798332503 发表于 2020-9-9 21:27:35

sunrise085 发表于 2020-9-9 12:14
这两个是关键字参数,直接用关键字写出来就可以了,或者就按顺序给出来。

非常感谢

18798332503 发表于 2020-9-9 21:28:06

1q23w31 发表于 2020-9-9 12:04
http://c.biancheng.net/view/4276.html
看这个

非常感谢
页: [1]
查看完整版本: spilt的应用