I\'m working on some Python code. I want to remove the new_folder including all its files at the end of program.
new_folder
Can someone please guide me how I can d
Just use shutil.rmtree
import shutil shutil.rmtree(path)