python rename file with variable code example
Example 1: python rename file
import os
os.rename('guru99.txt','career.guru99.txt')
Example 2: how to rename files python
import os
os.rename(r'C:\Users\Ron\Desktop\Test\Products.txt',r'C:\Users\Ron\Desktop\Test\Shipped Products.txt')