当前位置:  首页>> 技术小册>> Python合辑4-130个字符串操作示例

检查字符串是否以Python中的给定字符串或字符结尾

  1. txt = "Canada is a great country"
  2. x = txt.endswith("country")
  3. print(x)

Output:

  1. True