Answers for "change the file name using python"

3

python change filename

import os

os.rename('a.txt', 'b.kml')
Posted by: Guest on April-14-2021
14

rename file python

import os  
os.rename('old_name.txt','new_name.txt')
Posted by: Guest on May-17-2020

Code answers related to "change the file name using python"

Python Answers by Framework

Browse Popular Code Answers by Language