How To/python/

#!python
 
"""
os.remove(str filename)
 
[pl]
Usuwa plik.
 
[en]
Deletes (unlink) file
"""
 
os.remove('my_old_file.txt')