os.remove()
will remove a file.
os.rmdir()
will remove an empty directory.
shutil.rmtree()
will delete a directory and all its contents.
os.remove()
will remove a file.
os.rmdir()
will remove an empty directory.
shutil.rmtree()
will delete a directory and all its contents.