This commit is contained in:
louiscklaw
2025-01-31 22:56:58 +08:00
parent 57c7fd9332
commit b1cd1d4662
26 changed files with 6436 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
import os
for filename in os.listdir():
if filename.endswith(".jpg"):
num = int(os.path.splitext(filename)[0])
new_filename = "{:03d}.jpg".format(num)
os.rename(filename, new_filename)