In Python, rename() method is used to rename a file or directory. It takes two arguments. Let's check the syntax.
This is the syntax for os.rename() method
os.rename(src, dst)
src: Source is the name of the file or directory. It should must already exist.
dst: Destination is the new name of the file or directory you want to change.
Example:
import os os.rename('guru99.txt','career.guru99.txt')
Let's look at example in detail
You can rename the original file, we have changed the file name from "Guru99.txt" to "Career.guru99.txt."
Here is the complete code
import os import shutil from os import path def main(): # make a duplicate of an existing file if path.exists("guru99.txt"): # get the path to the file in the current directory src = path.realpath("guru99.txt"); # rename the original file os.rename("career.guru99.txt","guru99.txt") if __name__ == "__main__": main()