代码块
Posted fyandy
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了代码块相关的知识,希望对你有一定的参考价值。
//批量创建文件夹
def 自动创建文件夹(self): path_list = [ ‘date‘, ‘andy‘, ‘index‘, ‘other‘] for i in path_list: path_T = self.path + ‘/‘ + i if not os.path.exists(path_T): os.makedirs(path_T)
以上是关于代码块的主要内容,如果未能解决你的问题,请参考以下文章