startswith和endswith(以xxx开头,以xxx结尾)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了startswith和endswith(以xxx开头,以xxx结尾)相关的知识,希望对你有一定的参考价值。

startswith和endswith(以xxx开头,以xxx结尾):

注:
以.pac.gz结尾:if g.endswith(‘.pac.gz‘):

vi a1.py

#!/usr/bin/python

import os

d = open(‘/log/110Hud/tjpacgms.txt‘,‘r‘)
for e in d.readlines():
d.close()
for root,dirs,files in os.walk(e.strip()):
for g in files:
if g.endswith(‘.pac.gz‘):
o = open(‘/log/110Hud/tjpacgms3.txt‘,‘a‘)
o.write(os.path.join(root,g)+" ")
o.close()

:wq

python a1.py

以上是关于startswith和endswith(以xxx开头,以xxx结尾)的主要内容,如果未能解决你的问题,请参考以下文章

PHP中的startsWith()和endsWith()函数

PHP中的startsWith()和endsWith()函数

startsWith(),endsWith()的作用,用法,判断字符串a 是不是以字符串b开头或结尾

Python startswith()函数 与 endswith函数

实现php的startsWith和endsWith

66.Python中startswith和endswith的使用