Python 字符串String lstrip() 方法 Python 字符串String lower() 方法 Python 字符串String maketrans() 方法 Python 字符串String lstrip() 方法 #!/usr/bin/python str = " this is string example....wow!!! "; print str.lstrip() str = "88888888this is string example....wow!!!8888888"; print str.lstrip('8') Python 字符串String lower() 方法 Python 字符串String maketrans() 方法