Python字串lstrip()
方法返回一個字串的副本,其中指定字元(預設空白字元)從字串的左側刪除。
語法
以下是lstrip()
方法的語法 -
str.lstrip([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!!!*****