Created
November 29, 2019 19:02
-
-
Save ItsCosmas/3af22dc8d3eb6714a500379d0e61879b to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
i = 0 | |
for file in os.listdir("."): | |
dst = str(i) + ".jpeg" | |
src = file | |
dst = dst | |
os.rename(src,dst) | |
i +=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment