How are entire non-empty directory trees removed using Python?
Answers
Answered by
0
you have to install 'shutil' module
.
import shutil
shutil.rmtree('directory goes here')
Similar questions