美文网首页
Python的startswith与endswith函数

Python的startswith与endswith函数

作者: langlyyy | 来源:发表于2018-08-05 12:50 被阅读0次

http://www.qttc.net/201209206.html

在Python中有两个函数分别是startswith()函数与endswith()函数,功能都十分相似,

startswith()函数判断文本是否以某个字符开始,endswith()函数判断文本是否以某个字符结束。

<a name="t0" style="box-sizing: border-box; background: transparent; color: rgb(79, 161, 219); text-decoration: none; margin: 0px; padding: 0px; font-weight: normal; outline: none;"></a>startswith()函数

此函数判断一个文本是否以某个或几个字符开始,结果以True或者False返回。

text``=``'welcome to qttc blog'

print text.startswith(``'w'``) # True

print text.startswith(``'wel'``) # True

print text.startswith(``'c'``) # False

print text.startswith('') # True

|

<a name="t1" style="box-sizing: border-box; background: transparent; color: rgb(79, 161, 219); text-decoration: none; margin: 0px; padding: 0px; font-weight: normal; outline: none;"></a>endswith()函数

此函数判断一个文本是否以某个或几个字符结束,结果以True或者False返回。

|

text``=``'welcome to qttc blog'

print text.endswith(``'g'``) # True

print text.endswith(``'go'``) # False

print text.endswith(``'og'``) # True

print text.endswith('') # True

print text.endswith(``'g '``) # False

|

<a name="t2" style="box-sizing: border-box; background: transparent; color: rgb(79, 161, 219); text-decoration: none; margin: 0px; padding: 0px; font-weight: normal; outline: none;"></a>判断文件是否为exe执行文件

我们可以利用endswith()函数判断文件名的是不是以.exe后缀结尾判断是否为可执行文件

|

# coding=utf8

fileName1``=``'qttc.exe'

if``(fileName1.endswith(``'.exe'``)):

print '这是一个exe执行文件'

else``:

print '这不是一个exe执行文件'

# 执行结果:这是一个exe执行文件

|

<a name="t3" style="box-sizing: border-box; background: transparent; color: rgb(79, 161, 219); text-decoration: none; margin: 0px; padding: 0px; font-weight: normal; outline: none;"></a>判断文件名后缀是否为图片

|

|

# coding=utf8

fileName1``=``'pic.jpg'

if fileName1.endswith(``'.gif'``) or fileName1.endswith(``'.jpg'``) or fileName1.endswith(``'.png'``):

print '这是一张图片'

else``:

print '这不是一张图片'

# 执行结果:这是一张图片

|

相关文章

网友评论

      本文标题:Python的startswith与endswith函数

      本文链接:https://www.haomeiwen.com/subject/vzxomxtx.html