Python startswith()和endswith() 方法原理解析


Posted in Python onApril 28, 2020

startswith()方法

Python startswith() 方法用于检查字符串是否是以指定子字符串开头

如果是则返回 True,否则返回 False。如果参数 beg 和 end 指定值,则在指定范围内检查。

str.startswith(str, beg=0,end=len(string));

参数

  • str --检测的字符串。
  • strbeg --可选参数用于设置字符串检测的起始位置。
  • strend --可选参数用于设置字符串检测的结束位置。

返回值

如果检测到字符串则返回True,否则返回False。

常用环境:用于IF判断

#!/usr/local/bin/python
# coding=utf-8
listsql = 'select * from ifrs.indiv_info'
def isSelect(sql):
  chsql = sql.upper().strip()
  if not chsql.startswith("SELECT "):
    return False
  return True

print isSelect(listsql)
[root@bigdata-poc-shtz-3 zw]# python h.py
True

endswith()方法

作用:判断字符串是否以指定字符或子字符串结尾,常用于判断文件类型

一、函数说明

语法:string.endswith(str, beg=[0,end=len(string)])

string[beg:end].endswith(str)

参数说明:

  • string: --被检测的字符串
  • str: --指定的字符或者子字符串(可以使用元组,会逐一匹配)
  • beg: --设置字符串检测的起始位置(可选,从左数起)
  • end: --设置字符串检测的结束位置(可选,从左数起)

如果存在参数 beg 和 end,则在指定范围内检查,否则在整个字符串中检查

返回值:

如果检测到字符串,则返回True,否则返回False。

解析:如果字符串string是以str结束,则返回True,否则返回False

注:会认为空字符为真

python
>>> endsql = 'select * from ifrs.indiv_info'
>>> endsql.endswith('info')
True
>>> endsql.endswith('info',3)
True
>>>
>>> endsql.endswith('info',3,10)
False
>>> endsql.endswith('info',25,29)
True
>>> endsql.endswith('')
True

常用环境:用于判断文件类型(比如图片,可执行文件)

>>> f = 'a.txt'
>>> if f.endswith(('.txt')):
... print '%s is a txt' %f
... else:
... print '%s is not a txt' %f
...
a.txt is a txt

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持三水点靠木。

Python 相关文章推荐
Cython 三分钟入门教程
Sep 17 Python
Python基于scrapy采集数据时使用代理服务器的方法
Apr 16 Python
在Linux系统上安装Python的Scrapy框架的教程
Jun 11 Python
python简单猜数游戏实例
Jul 09 Python
Python去除、替换字符串空格的处理方法
Apr 01 Python
python最长回文串算法
Jun 04 Python
python pandas库中DataFrame对行和列的操作实例讲解
Jun 09 Python
对pandas将dataframe中某列按照条件赋值的实例讲解
Nov 29 Python
python flask框架实现传数据到js的方法分析
Jun 11 Python
使用Python实现Wake On Lan远程开机功能
Jan 22 Python
Python实现Wordcloud生成词云图的示例
Mar 30 Python
Python3.7安装pyaudio教程解析
Jul 24 Python
Python如何将函数值赋给变量
Apr 28 #Python
Python多线程thread及模块使用实例
Apr 28 #Python
Python基于模块Paramiko实现SSHv2协议
Apr 28 #Python
Python内置函数locals和globals对比
Apr 28 #Python
使用python实现CGI环境搭建过程解析
Apr 28 #Python
基于python连接oracle导并出数据文件
Apr 28 #Python
numpy库ndarray多维数组的维度变换方法(reshape、resize、swapaxes、flatten)
Apr 28 #Python
You might like
php zip文件解压类代码
2009/12/02 PHP
php提示无法加载或mcrypt没有找到 PHP 扩展 mbstring解决办法
2012/03/27 PHP
解析dedecms空间迁移步骤详解
2013/05/15 PHP
PHP实现的通过参数生成MYSQL语句类完整实例
2016/04/11 PHP
jquery.lazyload  实现图片延迟加载jquery插件
2010/02/06 Javascript
javascript document.compatMode兼容性
2010/02/23 Javascript
jQuery代码优化 遍历篇
2011/11/01 Javascript
js操作iframe兼容各种主流浏览器示例代码
2013/07/22 Javascript
node.js中的Socket.IO使用实例
2014/11/04 Javascript
JQuery操作元素的css样式
2015/03/09 Javascript
javascript框架设计之种子模块
2015/06/23 Javascript
JS获取CSS样式(style/getComputedStyle/currentStyle)
2016/01/19 Javascript
简单实现Bootstrap标签页
2020/08/09 Javascript
Angular ui.bootstrap.pagination分页
2017/01/20 Javascript
vue template中slot-scope/scope的使用方法
2018/09/06 Javascript
vue 更改连接后台的api示例
2019/11/11 Javascript
python django 增删改查操作 数据库Mysql
2017/07/27 Python
python虚拟环境virtualenv的使用教程
2017/10/20 Python
Python实现针对给定字符串寻找最长非重复子串的方法
2018/04/21 Python
python3 selenium自动化 frame表单嵌套的切换方法
2019/08/23 Python
Python threading的使用方法解析
2019/08/28 Python
Python 字符串、列表、元组的截取与切片操作示例
2019/09/17 Python
HTML5 Video标签的属性、方法和事件汇总介绍
2015/04/24 HTML / CSS
澳洲国民品牌乡村路折扣店:Country Road & Trenery Outlet
2018/04/19 全球购物
意大利一家专营包包和配饰的网上商店:Borse Last Minute
2019/08/26 全球购物
Currentbody德国站:健康与美容技术专家
2020/04/05 全球购物
zooplus德国:便宜地订购动物用品、动物饲料、动物食品
2020/05/06 全球购物
数据库设计的包括哪两种,请分别进行说明
2016/07/15 面试题
气象学专业个人求职信
2014/03/15 职场文书
年终总结会主持词
2014/03/25 职场文书
优秀安全员事迹材料
2014/05/11 职场文书
个性婚礼策划方案
2014/05/17 职场文书
学校2014重阳节活动策划方案
2014/09/16 职场文书
2015年检验科工作总结
2015/04/27 职场文书
幼儿教师远程研修感悟
2015/11/18 职场文书
利用Python+OpenCV三步去除水印
2021/05/28 Python