項目中用到python判斷一個字符串是否以某個字符串結尾,好比,篩選一個目錄下全部以.mp4結尾的文件。python
>>> item = "demo.mp4" >>> item.endswith('.mp4') True >>> item.endswith('.json') False >>> item.startswith('demo') True >>> item.startswith('index') False >>>
例子:json
將/tmp目錄下全部的mp4文件轉移到/home目錄下spa
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)