字符串索引示意图

python 字符串切片题目 python中字符串切片怎么用_Python

字符串切片也就是截取字符串,取子串

Python中字符串切片方法

字符串[开始索引:结束索引:步长]
切取字符串为开始索引到结束索引-1内的字符串
步长不指定时步长为1 字符串[开始索引:结束索引]

练习样例


1.  
# 1.截取2 - 5位置的字符2.  
num_str_1 = num_str[2:6]
3.  
print(num_str_1)

python 字符串切片题目 python中字符串切片怎么用_python 字符串切片题目_02


1.  
# 2.截取2 - 末尾的字符2.  
# 当开始索引和结束索引为开始和结束时可以省略不写
3.  
num_str_1 = num_str[2:]
4.  
print(num_str_1)
5.  
# 3.截取从开始 -5 位置的字符串
6.  
num_str_1 = num_str[0:6]
7.  
print(num_str_1)

 

python 字符串切片题目 python中字符串切片怎么用_字符串_03

截取2-末尾的字符用 num_str_1 = num_str[2:-1]呢?

结果是不对的

它切取得范围是第一个参数到第二个参数-1,如果用 num_str_1 = num_str[2:-1],它的切片范围是索引2到-2的位置

即结果为2345678


1.  
# 4.截取完整的字符串2.  
num_str_1 = num_str[:]
3.  
print(num_str_1)

 

1.  
# 5.从开始位置,每隔一个字符截取字符串2.  
num_str_1 = num_str[::2]
3.  
print(num_str_1)

python 字符串切片题目 python中字符串切片怎么用_字符截取_04


1.  
# 6.从索引1开始,每隔一个取一个2.  
num_str_1 = num_str[1::2]
3.  
print(num_str_1)

 

python 字符串切片题目 python中字符串切片怎么用_python 字符串切片题目_05


1.  
2.  
num_str_1 = num_str[2:-1]
3.  
print(num_str_1)

python 字符串切片题目 python中字符串切片怎么用_字符串_06


1.  
# 8.截取字符串末尾两个字符2.  
num_str_1 = num_str[-2:]
3.  
print(num_str_1)

 

python 字符串切片题目 python中字符串切片怎么用_字符串_07

    1.  
    # 9.字符串的逆序2.  
    num_str_1 = num_str[::-1]
    3.  
    print(num_str_1)
    4.  
    num_str_1 = num_str[-1::-1]
    5.  
    print(num_str_1)
    6.  
    # 那么我们试试用负数的索引可以取到字符串的什么值
    7.  
    print(num_str[-1])
    -->