首页
技术小册
AIGC
面试刷题
技术文章
MAGENTO
云计算
视频课程
源码下载
PDF书籍
「涨薪秘籍」
登录
注册
第一章: 什么是字符串
第二章:ASCII 表与 Python 字符串字符
第三章:字符串属性
零索引
不变性
重复
索引和切片
第四章:字符串方法
str.split
str.splitlines
str.strip
str.zfill
str.isalpha
str.find和str.rfind
str.index
str.maketrans
str.endswith
第五章:字符串操作
循环遍历一个字符串
字符串和关系运算符
检查字符串的成员资格
字符串格式
处理引号和撇号
当前位置:
首页>>
技术小册>>
Python合辑3-字符串用法深度总结
小册名称:Python合辑3-字符串用法深度总结
str.strip([chars]) 使用 strip 方法从字符串的两侧删除尾随空格或字符。例如: ``` string = " Apple Apple Apple no apple in the box apple apple " stripped_string = string.strip() print(stripped_string) left_stripped_string = ( stripped_string .lstrip('Apple') .lstrip() .lstrip('Apple') .lstrip() .lstrip('Apple') .lstrip() ) print(left_stripped_string) capitalized_string = left_stripped_string.capitalize() print(capitalized_string) right_stripped_string = ( capitalized_string .rstrip('apple') .rstrip() .rstrip('apple') .rstrip() ) print(right_stripped_string) ``` Output: ``` Apple Apple Apple no apple in the box apple apple no apple in the box apple apple No apple in the box apple apple No apple in the box ``` 在上面的代码片段中,使用了 lstrip 和 rstrip 方法,它们分别从字符串的左侧和右侧删除尾随空格或字符。还使用了 capitalize 方法,它将字符串转换为句子大小写
上一篇:
str.splitlines
下一篇:
str.zfill
该分类下的相关小册推荐:
Python爬虫入门与实战开发(下)
Python合辑13-面向对象编程案例(上)
Python机器学习基础教程(下)
剑指Python(磨刀不误砍柴工)
Python合辑1-Python语言基础
剑指Python(万变不离其宗)
Python爬虫入门与实战开发(上)
Python机器学习基础教程(上)
Python3网络爬虫开发实战(上)
Python与办公-玩转Word
Python合辑4-130个字符串操作示例
Python面试指南