天天看點

【python】判斷字元串以什麼開頭或結尾

項目中用到python判斷一個字元串是否以某個字元串結尾,比如,篩選一個目錄下所有以.mp4結尾的檔案。

>>> item = "demo.mp4"
>>> item.endswith('.mp4')
True
>>> item.endswith('.json')
False
>>> item.startswith('demo')
True
>>> item.startswith('index')
False
>>>      

例子:

将/tmp目錄下所有的mp4檔案轉移到/home目錄下

import shutil
import os
file_list = os.listdir('/tmp')
for item in file_list:
    if item.endswith('.mp4'):
        shutil.move('/tmp/%s' %item, '/home/%s' %item)      

原創作者:鄭立賽

郵箱:[email protected]

歡迎關注我們的公衆号擷取最新文章:運維自動化開發

【python】判斷字元串以什麼開頭或結尾
【python】判斷字元串以什麼開頭或結尾