Skip to content

Instantly share code, notes, and snippets.

@ZhigangPu
Created March 19, 2019 08:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ZhigangPu/c1ec5e8d429630a321042c03990dbc3b to your computer and use it in GitHub Desktop.
Save ZhigangPu/c1ec5e8d429630a321042c03990dbc3b to your computer and use it in GitHub Desktop.
change file name from png to jpg
import os
for filenames in os.listdir():
if filenames.endwith('png'):
os.rename(filename, filename[:-3]+'jpg')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment