import textwrap doc='''Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. complex is better than complicated. Flat is better than dense. Readability counts. Special cases arren't special enough to break th…
import os import stat def remove_readonly(func,path): #定义回调函数 os.chmod(path,stat.S_IWRITE) #删除文件的只读文件 func(path) #在次调用刚刚失败的函数 def del_dir(path,onerror=None): #path为路径 for file in os.listdir(path): file_or_dir = os.path.join(path,file) if os.path.isdi…