Python 字符串String replace() 方法 Python 字符串String min() 方法 Python 字符串String rfind() 方法 Python 字符串String replace() 方法 #!/usr/bin/python str = "this is string example....wow!!! this is really string" print str.replace("is", "was") print str.replace("is", "was", 3) Python 字符串String min() 方法 Python 字符串String rfind() 方法