📜  获取字符串结尾python(1)

📅  最后修改于: 2023-12-03 15:11:51.584000             🧑  作者: Mango

获取字符串结尾 Python

Python 中可以使用字符串的 endswith() 方法来判断一个字符串是否以指定的字符串结尾。该方法返回一个布尔值。如果字符串以指定的字符串结尾,则返回 True,否则返回 False。

语法

str.endswith(suffix[, start[, end]])

  • suffix: 要检查的后缀字符串。
  • start: 字符串中开始检索的位置,默认为 0。
  • end: 字符串中结束检索的位置,默认为字符串的长度。
示例
str1 = "Hello World"
print(str1.endswith("orld"))  # 输出 True

str2 = "Hello World"
print(str2.endswith("ld", 0, 9))  # 输出 True

str3 = "Hello World"
print(str3.endswith("o", 0, 5))  # 输出 False

以上示例中,分别使用了不同的字符串和参数来进行测试,最终返回了相应的结果。

总结

Python 提供了非常方便的方法来判断一个字符串是否以指定的字符串结尾。可使用的函数是 endswith(),它返回一个布尔值,方便我们进行判断。在实际编程中,可以根据需求进行调用该方法,从而达到快速简便的效果。