Skip to content

Instantly share code, notes, and snippets.

@yongjun823
Created September 11, 2017 19:06
Show Gist options
  • Select an option

  • Save yongjun823/82c5cb9e221f49fe5936c76bf72c981c to your computer and use it in GitHub Desktop.

Select an option

Save yongjun823/82c5cb9e221f49fe5936c76bf72c981c to your computer and use it in GitHub Desktop.
name rename in folder
import os
for idx, name in enumerate(os.listdir('.')):
os.rename(name, str(idx) + '.png')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment