通过指定的文本模式去检查字符串的开头或者结尾,比如文件名后缀,URL 等等
>>> file = 'a.txt'
>>> file.startswith('a')
True
>>> file.endswith('.txt')
True
检查多种匹配可能
>>> file = 'a.txt'
>>> file.endswith(('.txt', '.js', '.xml'))
True
>>> file.startswith(('a.', 'b.', 'c.'))
True
startswith()和endswith()方法提供了一个非常方便的方式去做字符串开头和结尾的检查,用re实现也可以,但是有点大材小用,而且startswith()和endswith()方法更加简单运行会更快。