在Python中,lstrip()函數可以用于去除字符串開頭的指定字符或字符序列。它的使用方法如下:
str1 = " hello world"
result = str1.lstrip()
print(result) # 輸出:hello world
str2 = "###hello world"
result = str2.lstrip("#")
print(result) # 輸出:hello world
str3 = "abcabcabc123"
result = str3.lstrip("abc")
print(result) # 輸出:123
注意:lstrip()函數只能去除字符串開頭的字符,并不會對字符串中間或結尾的字符進行操作。