Python3 string.lstrip()方法

2019-10-16 23:11:16
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!!!*****