python编程快速上手之第9章实践项目参考答案(9.8.2)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python编程快速上手之第9章实践项目参考答案(9.8.2)相关的知识,希望对你有一定的参考价值。

import os,shutil
sourcefolder=‘C:\\Users\\Administrator\\Python35-32‘
size=0
os.chdir(sourcefolder)

for folderName, subfolders, filenames in os.walk(sourcefolder):
  for item in filenames:
    size=os.path.getsize(os.path.join(folderName,item))
      if size>1024*1024*100:
        print (item)
       #send2trash.send2trash(os.path.join(folderName,item))









以上是关于python编程快速上手之第9章实践项目参考答案(9.8.2)的主要内容,如果未能解决你的问题,请参考以下文章

python编程快速上手之第8章实践项目参考答案(8.9.2)

python编程快速上手之第9章实践项目参考答案(9.8.3)

python编程快速上手之第6章实践项目参考答案

python编程快速上手之第8章实践项目参考答案

python编程快速上手之第10章实践项目参考答案(11.11.2)

python编程快速上手之第15章实践项目参考答案(17.7.2)