Python 字符串String startswith() 方法 Python 字符串String splitlines() 方法 Python 字符串String strip() 方法 Python 字符串String startswith() 方法 #!/usr/bin/python str = "this is string example....wow!!!"; print str.startswith( 'this' ) print str.startswith( 'is', 2, 4 ) print str.startswith( 'this', 2, 4 ) Python 字符串String splitlines() 方法 Python 字符串String strip() 方法