Hi there!! I'm new to this forum, nice to join here with you!
I'm trying to get a .exe of a simple program I've done:
(renaming.py):
import os
top=raw_input("directorio: ")
def getNewName(name):
return name.lower()
for root, dirs, files in os.walk(top, topdown=False):
for name...