创新互联Python教程:Pythonlstrip()

python 中的lstrip()函数根据给定的参数删除原始字符串副本中的前导字符。方法将此副本作为输出返回。

 **string.lstrip([chars])** #where chars are those to remove as leading characters 

lstrip()参数:

函数的作用是:以字符为参数。如果未提供字符,则从字符串中删除前导空格。

参数 描述 必需/可选
烧焦要作为前导字符移除的字符可选择的

lstrip()返回值

返回值始终是字符串。在找到第一个匹配之前,所有字符组合都从左边开始删除。

| 投入 | 返回值 | | 线 | 字符串的副本 |

Python 中lstrip()方法的示例

示例lstrip()在 Python 中是如何工作的?

 # Variable declaration  
string1 =  "  Python  "  
# Leading whitepsace are removed
print(string1.lstrip()) 
string2 =  ",,,,,ssaaww.....programming" 
print(string2.lstrip(",.asw")) 

输出:

 Python  
programming 

例 2:伊斯特普的工作

 # Variable declaration  
string1 =  "$$$$-Python-$$$$"  
# Calling function  
string2 = string1.lstrip('$')  
# Displaying result  
print(string1)  
print(string2) 

输出:

 $$$$-Python-$$$$
-Python-$$$$ 

网站题目:创新互联Python教程:Pythonlstrip()
当前地址:http://www.shufengxianlan.com/qtweb/news49/460749.html

网站建设、网络推广公司-创新互联,是专注品牌与效果的网站制作,网络营销seo公司;服务项目有等

广告

声明:本网站发布的内容(图片、视频和文字)以用户投稿、用户转载内容为主,如果涉及侵权请尽快告知,我们将会在第一时间删除。文章观点不代表本网站立场,如需处理请联系客服。电话:028-86922220;邮箱:631063699@qq.com。内容未经允许不得转载,或转载时需注明来源: 创新互联