Python中lstrip()方法的使用及示例分析
发布时间:2024-01-05 02:53:59
Python中的lstrip()方法是用来移除字符串左侧的指定字符(默认为空格)。该方法返回移除指定字符后的新字符串。
下面是lstrip()方法的语法:
string.lstrip([chars])
其中,string表示要操作的字符串,chars是可选参数,用来指定要移除的字符。如果不指定chars,默认移除左侧的空格。
下面是一些使用lstrip()方法的示例:
示例1:
string = " hello world" result = string.lstrip() # 移除左侧的空格 print(result) # 输出:'hello world'
示例2:
string = "###hello world"
result = string.lstrip("#") # 移除左侧的'#'字符
print(result) # 输出:'hello world'
示例3:
string = "hello world"
result = string.lstrip("hello") # 移除左侧的'hello'字符串
print(result) # 输出:' world'
示例4:
string = "123hello world"
result = string.lstrip("123") # 移除左侧的'123'字符串
print(result) # 输出:'hello world'
示例5:
string = "hello world"
result = string.lstrip("abc") # 移除左侧的'a', 'b', 'c'字符
print(result) # 输出:'hello world'
需要注意的是,lstrip()方法不会修改原有字符串,而是返回一个新的字符串。
