Important Notice:

Course Content
File Processing in Python (Chapter-11) M3-R5
About Lesson

Deleting File (Remove File):-

              Python में किसी फाइल को डिलीट करने के लिए remove( ) method का प्रयोग किया जाता है

remove( ) method is used to delete a file in Python

Syntax:-                      os.remove(file_name)

import os

os.remove(“old.txt”)

 

error: Content is protected !!