python学习之endswith()

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python学习之endswith()相关的知识,希望对你有一定的参考价值。

定义:

Python endswith() 方法用于判断字符串是否以指定后缀结尾,如果以指定后缀结尾返回True,否则返回False。可选参数"start"与"end"为检索字符串的开始与结束位置。

语法:

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

例子:

#!/usr/bin/python

str = "this is string example....wow!!!";

suffix = "wow!!!";
print str.endswith(suffix);
print str.endswith(suffix,20);

suffix = "is";
print str.endswith(suffix, 2, 4);
print str.endswith(suffix, 2, 6);

 结果:

True
True
True
False

 

以上是关于python学习之endswith()的主要内容,如果未能解决你的问题,请参考以下文章

iOS学习之代码块(Block)

Python学习之模块

GoLang学习之变量定义和初始化

Python的学习之-流程控制

坚持Selenium+Python学习之从读懂代码开始 DAY1

Python基础学习之语句和语法