lstrip() 方法返回刪除了前導字符的字符串副本(基於傳遞的字符串參數)。
lstrip()
根據參數(指定要刪除的字符集的字符串)從左側刪除字符。
用法:
string.lstrip([chars])
參數:
chars
(可選)- 指定要刪除的字符集的字符串。
如果未提供 chars
參數,則會從字符串中刪除所有前導空格。
返回:
lstrip()
返回去掉前導字符的字符串副本。
chars
參數中的所有字符組合都將從字符串左側刪除,直到第一個不匹配。
示例:lstrip() 的工作
random_string = ' this is good '
# Leading whitepsace are removed
print(random_string.lstrip())
# Argument doesn't contain space
# No characters are removed.
print(random_string.lstrip('sti'))
print(random_string.lstrip('s ti'))
website = 'https://www.programiz.com/'
print(website.lstrip('htps:/.'))
輸出
this is good this is good his is good www.programiz.com/
相關用法
- Python String ljust()用法及代碼示例
- Python String lower()用法及代碼示例
- Python String Center()用法及代碼示例
- Python String decode()用法及代碼示例
- Python String join()用法及代碼示例
- Python String casefold()用法及代碼示例
- Python String isalnum()用法及代碼示例
- Python String rsplit()用法及代碼示例
- Python String startswith()用法及代碼示例
- Python String rpartition()用法及代碼示例
- Python String splitlines()用法及代碼示例
- Python String upper()用法及代碼示例
- Python String isprintable()用法及代碼示例
- Python String translate()用法及代碼示例
- Python String title()用法及代碼示例
- Python String replace()用法及代碼示例
- Python String split()用法及代碼示例
- Python String format_map()用法及代碼示例
- Python String zfill()用法及代碼示例
- Python String max()用法及代碼示例
注:本文由純淨天空篩選整理自 Python String lstrip()。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。