startswith

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

加入知识星球, 每天收获更多精彩内容

分享日常研究的python技术和遇到的问题及解决方案