Python startswith()和endswidth()函数

Python在String类中有一个startswith(string)方法。此方法接受要搜索的前缀字符串,并在字符串对象上调用。您可以通过以下方式调用此方法-

>>> 'hello world'.startswith('hell')
True
>>> 'hello world'.startswith('nope')
False

同样,方法的末尾可以接受要在给定字符串的末尾搜索的后缀字符串。例如,

>>> 'hello world'.endswith('orld')
True
>>> 'hello world'.endswith('nope')
False