To rename a file or folder in Python you can use the following snippet.
Sample Python
import os os.rename("pathOld","pathNew") #file or folderpaths
To rename a file or folder in Python you can use the following snippet.
import os os.rename("pathOld","pathNew") #file or folderpaths