Python split()方法
語法
以下是split()方法的語法:
str.split(str="", num=string.count(str)).
參數
-
str -- 這是任何分隔符,默認情況下是空格。
-
num -- 這是要分割的行數。
返回值
此方法返回行列表。
例子
下麵的示例演示了split()方法的使用。
#!/usr/bin/python str = "Line1-abcdef Line2-abc Line4-abcd"; print str.split( ); print str.split(' ', 1 );
當我們運行上麵的程序,它會產生以下結果:
['Line1-abcdef', 'Line2-abc', 'Line4-abcd'] ['Line1-abcdef', ' Line2-abc Line4-abcd']