首页
技术小册
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-字符串用法深度总结
索引和切片 已经确定字符串是从零开始索引的,可以使用其索引值访问字符串中的任何元素。还可以通过在两个索引值之间进行切片来获取字符串的子集。例如: ``` main_string = "I learned English and Python with ZHouluobo. You can do it too!" # Index 0 print(main_string[0]) # Index 1 print(main_string[1]) # Check if Index 1 is whitespace print(main_string[1].isspace()) # Slicing 1 print(main_string[0:11]) # Slicing 2: print(main_string[-18:]) # Slicing and concatenation print(main_string[0:11] + ". " + main_string[-18:]) ``` Output: ``` I True I learned English You can do it too! I learned English. You can do it too! ```
上一篇:
重复
下一篇:
str.split
该分类下的相关小册推荐:
Python数据分析与挖掘实战(下)
Python合辑6-字典专题
Python合辑14-面向对象编程案例(下)
实战Python网络爬虫
Python与办公-玩转Word
Python合辑7-集合、列表与元组
Python3网络爬虫开发实战(上)
Python合辑2-字符串常用方法
Python爬虫入门与实战开发(上)
Python编程轻松进阶(三)
Python机器学习基础教程(下)
Python爬虫入门与实战开发(下)