python字符串的startswith方法检查字符串是否是以指定子字符串 prefix 开头,方法定义如下
def startswith(self, prefix, start=None, end=None):
示例代码
word = 'python'
print(word.startswith('py')) # True
startswith方法允许你指定起始索引和结束索引
word = 'python'
print(word.startswith('th', 2)) # True
QQ交流群: 211426309