当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python String endswith()用法及代码示例


如果字符串以给定的后缀结尾,则endswith()方法返回True,否则返回False。

用法:

str.endswith(suffix, start, end)

参数:


  • suffix:后缀只不过是需要检查的字符串。
    start :字符串中需要检查后缀的起始位置。
    end:字符串中需要检查后缀的结束位置。

注意:如果未提供开始和结束索引,则默认情况下它将0和length-1用作开始和结束索引,而我们的搜索中不包括结束索引。

返回值:

It returns True if string ends with the given
suffix otherwise returns False. 

代码1

# Python code shows the working of 
# .endswith() function 
  
text = "geeks for geeks."
  
# returns False 
result = text.endswith('for geeks') 
print (result) 
  
# returns True 
result = text.endswith('geeks.') 
print (result) 
  
# returns True 
result = text.endswith('for geeks.') 
print (result) 
  
# returns True 
result = text.endswith('geeks for geeks.') 
print (result)

输出:

False
True
True
True


代码2

# Python code shows the working of 
# .endswith() function 
  
text = "geeks for geeks."
  
# start parameter:10 
result = text.endswith('geeks.', 10) 
print(result) 
  
# Both start and end is provided 
# start:10, end:15 
# Returns False 
result = text.endswith('geeks', 10, 15) 
print result 
  
# returns True 
result = text.endswith('geeks', 10, 14) 
print result

输出:

True
True
False


相关用法


注:本文由纯净天空筛选整理自pawan_asipu大神的英文原创作品 String endswith() in Python。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。