# X is the original name and Y is the name to be changed
import os, sys
print ("The dir is: %s"%os.listdir(os.getcwd()))
os.rename("X","Y")
print ("Successfully renamed.")
print ("the dir is: %s" %os.listdir(os.getcwd()))
Solve Problems by Coding Solutions - A Complete solution for python programming