在 Python 中获取子字符串
如何在 Python 中提取字符串的一部分?答案在于该语言强大的字符串切片功能。
字符串切片允许您通过使用方括号指定起始和结束索引来获取子字符串。默认情况下,字符串的第一个字符的索引为 0。
语法:
string[start:end]
选项:
示例:
>>> x = "Hello World!" >>> x[2:] # From character 3 to the end 'llo World!' >>> x[:2] # From the start to character 2 'He' >>> x[:-2] # From the start to 2 characters before the end 'Hello Worl' >>> x[-2:] # From 2 characters before the end to the end 'd!' >>> x[2:-2] # From character 3 to 2 characters before the end 'llo Worl'
这个概念在 Python 中被称为“切片”,并且扩展到字符串之外。请参阅文档以获得全面的解释。
以上是如何在 Python 中使用切片提取子字符串?的详细内容。更多信息请关注PHP中文网其他相关文章!