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