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))
相对于上一个程序 , 这个程序使用了列表, 且对写操作用了join . join操作比+ 效率高. 在此,我们只要知道这个结论就可以了. 日后会慢慢讲解.

你可能感兴趣的:(解析)