检查字符串中的前缀或后缀
startswith()
和 endswith()
方法用于检查字符串是否以提供的子字符串(或子字符串元组)开头或结尾。
python
>>> "Hello Py".startswith("He")
True
>>> "Hello Py".startswith(("He","P"))
True
>>> "Py Hello".startswith(("He","P"))
True
>>> "Hello Py".endswith("y")
True
>>> "Hello Py".endswith(("p","y"))
True
>>> "Py Hello".endswith(("o","n"))
True