1. 程式人生 > >python method

python method

style div www string nbsp split method pan col

split()

>>> string = "www.abc.com.cn"
>>> print(string.split(.,1))
[www, abc.com.cn]
>>> print(string.split(.,2))
[www, abc, com.cn]

python method