CDays–4 习题五及相关内容解析。
给出CDays-4-5.py
import os export = "" for root, dirs, files in os.walk('/media/cdrom0'): export+="\n %s;%s;%s" % (root,dirs,files) open('mycd2.cdc', 'w').write(export)
分析它比给出的程序好在哪.
我们发现这个程序最初创建了一个字符串 export
在循环中将目录写进了字符串而不是文件, 在程序结束时将export 字符串写入文件,这样的好处就是减少文件操作次数,提高运行速度.
给出CDays-4-6.py
import os export = [] for root, dirs, files in os.walk('/media/cdrom0'): export.append("\n %s;%s;%s" % (root,dirs,files)) open('mycd2.cdc', 'w').write(''.join(export))