• startswith()函数与endswith()函数判断文件的开头和结尾


    在Python中有两个函数分别是startswith()函数与endswith()函数,功能都十分相似,startswith()函数判断文本是否以某个字符开始,endswith()函数判断文本是否以某个字符结束。

    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

    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

    判断文件是否为exe执行文件

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

    复制代码 代码如下:

    # coding=utf8
     
    fileName1='qttc.exe'
    if(fileName1.endswith('.exe')):
        print '这是一个exe执行文件'  
    else:
        print '这不是一个exe执行文件'
     
    # 执行结果:这是一个exe执行文件

    判断文件名后缀是否为图片

    代码如下:


    # coding=utf8
     
    fileName1='pic.jpg'
    if fileName1.endswith('.gif') or fileName1.endswith('.jpg') or fileName1.endswith('.png'):
        print '这是一张图片'
    else:
        print '这不是一张图片'
        
    # 执行结果:这是一张图片

  • 相关阅读:
    编辑文章
    POJ_1195 Mobile phones 【二维树状数组】
    WCF探索之旅(三)——IIS公布WCF服务
    doT.js具体使用介绍
    数据结构:最小生成树--Kruskal算法
    关于打开sdk下载不了的最优秀解决方式
    JS 之 数据类型转换
    MongoDB学习笔记<六>
    Spring、Hibernate 数据不能插入到数据库问题解决
    Cocos2d-x 3.0final 终结者系列教程16-《微信飞机大战》实现
  • 原文地址:https://www.cnblogs.com/xiaoxiaoxuepiao/p/12744232.html
Copyright © 2020-2023  润新知