Python 字符串String splitlines() 方法 Python 字符串String split() 方法 Python 字符串String startswith() 方法 Python 字符串String splitlines() 方法 #!/usr/bin/python str = "Line1-a b c d e f\nLine2- a b c\n\nLine4- a b c d"; print str.splitlines( ) print str.splitlines( 0 ) print str.splitlines( 3 ) print str.splitlines( 4 ) print str.splitlines( 5 ) Python 字符串String split() 方法 Python 字符串String startswith() 方法