python中字符串中提取字符串
时间: 2023-06-03 07:07:53 浏览: 113
python实现快速提取一串字符中的中文
可以使用字符串的切片功能提取部分字符串。例如,如果你想要从字符串 "Hello World" 中提取 "World" 这个子串,可以使用以下代码:
```
string = "Hello World"
substring = string[6:]
print(substring)
```
输出结果为:
```
World
```
阅读全文
python实现快速提取一串字符中的中文