Prerequisite:OS module in Python
In Python3,rename() method is used to rename a file or directory. This method is a part of theos module and comes in extremely handy.
Syntax for os.rename() :
os.rename(src, dst) : src is source address of file to be renamed and dst is destination with the new name.
Now say givenn images in a folder having random names. For example, consider the image below:

Now the requirement is to rename them in ordered fashion like hostel1, hostel2, ...and so on. Doing this manually would be a tedious task but this target can be achieved using therename() andlistdir() methods in the os module.
Thelistdirmethod lists out all the content of a given directory.
Syntax for listdir() :
list = os.listdir('src') : where src is the source folder to be listed out.
The following code will do the job for us. It traverses through the lists of all the images in xyz folder, defines the destination (dst) and source (src) addresses, and renames using rename module.
The accepted format for destination (dst) and source (src) addresses to be given as arguments inos.rename(src,dst)is"folder_name/file_name".
Below is the implementation :
Python3# Python 3 code to rename multiple# files in a directory or folder# importing os moduleimportos# Function to rename multiple filesdefmain():folder="xyz"forcount,filenameinenumerate(os.listdir(folder)):dst=f"Hostel{str(count)}.jpg"src=f"{folder}/{filename}"# foldername/filename, if .py file is outside folderdst=f"{folder}/{dst}"# rename() function will# rename all the filesos.rename(src,dst)# Driver Codeif__name__=='__main__':# Calling main() functionmain()Output :
The output of this code will look something like this -

Note : This code may not run in online IDE, since it use external image file directory.
Python program to rename multiple files
Explore
Python Fundamentals
Python Data Structures
Advanced Python
Data Science with Python
Web Development with Python
Python Practice