python的字符串截取
时间: 2023-06-22 18:47:37 浏览: 96
Python程序设计基础语法-截取字符串.pptx
可以使用切片(slice)的方式截取Python中的字符串。具体来说,可以使用类似于下面的代码:
```python
s = "Hello, world!"
print(s[0:5]) # 输出 "Hello"
print(s[7:]) # 输出 "world!"
print(s[-6:]) # 输出 "world!"
```
其中,`s[0:5]`表示截取从0到5(不包括5)的子字符串,即"Hello";`s[7:]`表示从第7个字符(包括第7个字符)开始截取到字符串的结尾,即"world!";而`s[-6:]`表示从倒数第6个字符(包括倒数第6个字符)开始截取到字符串的结尾,也是"world!"。
阅读全文