首页
技术小册
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.endswith(suffix) 返回 True 是以指定后缀结尾的字符串。如果字符串以指定的前缀开头,str.startswith(prefix) 返回 True: ``` sentences = ['Time to master data science', 'I love statistical computing', 'Eat, sleep, code'] # endswith() example for one_sentence in sentences: print(one_sentence.endswith(('science', 'computing', 'Code'))) ``` Output: ``` True True False ``` # startswith() example ``` for one_sentence in sentences: print(one_sentence.startswith(('Time', 'I ', 'Ea'))) ``` Output: ``` True True True ```
上一篇:
str.maketrans
下一篇:
循环遍历一个字符串
该分类下的相关小册推荐:
Python合辑10-函数
Python合辑6-字典专题
Python合辑13-面向对象编程案例(上)
Python数据分析与挖掘实战(上)
Python合辑7-集合、列表与元组
Python自动化办公实战
Python机器学习基础教程(下)
Python合辑9-判断和循环
Python3网络爬虫开发实战(下)
Python与办公-玩转Excel
Python爬虫入门与实战开发(下)
Python高并发编程与实战