[PYTHON] python中startswith函数用法

一、当不确定python中某一函数是做什么用的可以进入函数里面分析它的源码

[PYTHON] python中startswith函数用法_第1张图片

大致意思就是:如果prefix在S中以start开头,以end结尾,返回结果为True,否则返回False

 由上得知,其语法如下:

 S.startswith(prefix[, start[, end]])

也可以:

 S[start:end].startswith(prefix)

参数声明:

参数 声明
S 被检测的字符串
prefix 指定的字符或子串
start 设置字符串检测的起始位置(默认值为0)
end 设置字符串检测的结束位置

实例:

s='hello word'
print s.startswith('wor')
print s.startswith('h')
print s.startswith('hell')
print s.startswith('wor',6,9)

返回结果:
False
True
True
True

s='hello word'
print s[6:9].startswith('wor')
print s[1:3].startswith('wor')

返回结果:

True

False

你可能感兴趣的:(PYTHON,python,开发语言)