当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python String lstrip()用法及代码示例


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 lstrip()。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。