码迷,mamicode.com
首页 > 编程语言 > 详细

python学习之endswith()

时间:2017-10-12 17:02:07      阅读:186      评论:0      收藏:0      [点我收藏+]

标签:this   class   size   div   python   pytho   with   family   start   

定义:

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()

标签:this   class   size   div   python   pytho   with   family   start   

原文地址:http://www.cnblogs.com/leomei91/p/7656690.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!