Python 3 – String 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!!!*****