Python 3 - 字符串 lstrip() 方法

  • 描述

    lstrip()方法返回字符串的副本,其中所有字符都已从字符串的开头删除(默认为空白字符)。
  • 句法

    以下是语法lstrip()方法 -
    
    str.lstrip([chars])
    
  • 参数

    chars− 您可以提供必须修剪的字符。
  • 返回值

    此方法返回字符串的副本,其中所有字符都已从字符串的开头删除(默认为空白字符)。
  • 例子

    以下示例显示了 lstrip() 方法的用法。
    
    #!/usr/bin/python3
    str = "     this is string example....wow!!!"
    print (str.lstrip())
    str = "*****this is string example....wow!!!*****"
    print (str.lstrip('*'))
    
    当我们运行上面的程序时,它会产生以下结果 -
    
    this is string example....wow!!!
    this is string example....wow!!!*****