python 遍历本地文件

files = os.listdir("./")
for f in files:
  if f.lower()[-3:] == "mp4":
    print (f)

你可能感兴趣的