1import os
2def fn(): # 1.Get file names from directory
3 file_list=os.listdir(r"C:\Users")
4 print (file_list)
5
6 #2.To rename files
7fn()
1from os import listdir
2from os.path import isfile, join
3onlyfiles = [f for f in listdir(mypath) if isfile(join(mypath, f))]
4