Python 的 str.lstrip(~)
方法返回刪除了指定前導字符的字符串。默認是刪除所有前導空格(即左側的空格)。
參數
1.chars
| string
| optional
指定要從字符串左側刪除的前導字符組合的字符串。默認為空白。
返回值
刪除了指定前導字符的字符串。
例子
基本用法
要從 " Dog"
中刪除所有前導空格:
x = " Dog"
x.lstrip()
'Dog'
字符參數
要從 " SkyTowner"
中刪除前導 'k S'
的所有組合:
y = " SkyTowner"
y.lstrip('k S')
'yTowner'
我們從字符串開頭刪除 'k'
、 ' '
和 'S'
的所有組合,這給我們返回值 'yTowner'
。
區分大小寫
要從"SkyTowner"中刪除所有前導's'
:
z = "SkyTowner"
z.lstrip('s')
'SkyTowner'
請注意,不會刪除前導字符,因為字符串的開頭不匹配,其中 's'
的 char
參數與 'S'
不匹配。如圖所示,lstrip(~)
方法區分大小寫。
相關用法
- Python String lstrip()用法及代碼示例
- Python String ljust方法用法及代碼示例
- Python String lower方法用法及代碼示例
- Python String ljust()用法及代碼示例
- Python String lower()用法及代碼示例
- Python String count方法用法及代碼示例
- Python String isnumeric方法用法及代碼示例
- Python String Center()用法及代碼示例
- Python String zfill方法用法及代碼示例
- Python String rstrip方法用法及代碼示例
- Python String decode()用法及代碼示例
- Python String count()用法及代碼示例
- Python String join()用法及代碼示例
- Python String casefold()用法及代碼示例
- Python String isalnum()用法及代碼示例
- Python String endswith方法用法及代碼示例
- Python String rsplit()用法及代碼示例
- Python String isidentifier()用法及代碼示例
- Python String startswith()用法及代碼示例
- Python String rjust方法用法及代碼示例
- Python String rpartition()用法及代碼示例
- Python String rpartition方法用法及代碼示例
- Python String splitlines()用法及代碼示例
- Python String upper()用法及代碼示例
- Python String isprintable()用法及代碼示例
注:本文由純淨天空篩選整理自Isshin Inada大神的英文原創作品 Python String | lstrip method。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。