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
use os.system("rm -rf" + whatever_path +" new_folder")
os.system("rm -rf" + whatever_path +" new_folder")