参考链接: 如何在Python中索引和切片字符串string
字符串是一个字符序列,那么如何访问字符串中的一个或者多个字符呢?在Python中,可以通过索引和切片的操作来完成。
序号体系
正向递增序号,从左往右编号 0 1 2 3 4 h e l l o反向递减序列,从右往左编号 -5 -4 -3 -2 -1 h e l l o
区间访问格式
字符串[头下标:尾下标:步长]
头下标表示开始取值的索引。头下标表示结束取值的索引,二者都可以在无的情况下,表示从头、尾取值。 而 步长则表示隔几个数取值,如1到3则称步长是2;若是步长为负,这说明倒着取值,如3到1步长为-2.
# python3
str = 'hello world!'
# 获得字符串前5个字符: hello
print(str[:5]) # 等同于 print(str[0:5])
# 获得字符串 [2,5) 一共三个字符: llo
print(str[2:5])
# 获得字符串[6,len(str))之后的字符: world!(一共6个字符)
print(str[6:])
# 下标从最右边以0开始,获得[5,len(str)): hello w
print(str[:-5])
# 下标从最右边以0开始,获得[5,8): o w
print(str[-8:-5])
# 字符串逆序: !dlrow olleh
print(str[::-1])
# 字符串以间距为2输出:hlowrd
print(str[::2])
# 字符串在[3,8)中以间距为2输出:l o(一共三个字符)
print(str[3:8:2])
# 将字符串按照[0, len) 的长度进行切分
for i in range(0, len(str)):
print(str[:i])
# 输出:
#
# h
# he
# hel
# hell
# hello
# hello
# hello w
# hello wo
# hello wor
# hello worl
# hello world
# 将字符串按照起点为 {0,2,4,6,8,10}
for i in range(0, len(str) ,2):
print(str[i:])
#输出:
# hello world!
# llo world!
# o world!
# world!
# rld!
# d!
本文系转载,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。
本文系转载,前往查看
如有侵权,请联系 cloudcommunity@tencent.com 删除。
扫码关注腾讯云开发者
领取腾讯云代金券
Copyright © 2013 - 2025 Tencent Cloud. All Rights Reserved. 腾讯云 版权所有
深圳市腾讯计算机系统有限公司 ICP备案/许可证号:粤B2-20090059 深公网安备号 44030502008569
腾讯云计算(北京)有限责任公司 京ICP证150476号 | 京ICP备11018762号 | 京公网安备号11010802020287
Copyright © 2013 - 2025 Tencent Cloud.
All Rights Reserved. 腾讯云 版权所有