Python Programming Quick Start 15th Chapter Practical Project Reference Answer (17.7.2)

Source: Internet
Author: User

#! Python3#Import modules and write comments to describe.Importzipfile, Os fromPILImportImage fromPILImportImageFile#os.chdir (' d:\\my documents\\ ')Imagefile.load_truncated_images =True forFolderName, subfolders, filenamesinchOs.walk ('d:\\my documents\\'): Numphotofiles=0 Numnonphotofiles=0 forFileNameinchFilenames:#Check if file extension isn ' t. png or. jpg.    if  not(Filename.endswith ('. PNG')orFilename.endswith ('. jpg')         orFilename.endswith ('. PNG')orFilename.endswith ('. JPG')            orFilename.endswith ('. gif')orFilename.endswith ('. GIF')): Numnonphotofiles+ = 1Continue #Skip to next filename#Open image file using Pillow.Os.chdir (foldername)Try: Im=image.open (filename) im= Im.convert ('RGB') width, height=im.sizeexcept:      Continue#Check If width & height are larger than.    ifMax (Width,height) > 500 :#Image is large enough to be considered a photo.Numphotofiles + = 1Else:#Image is too small to be a photo.Numnonphotofiles + = 1#If more than half of files were photos,#Print the absolute path of the folder.  ifNumphotofiles > 10 andNumphotofiles >Numnonphotofiles:Print(foldername)

Python Programming Quick Start 15th Chapter Practical Project Reference Answer (17.7.2)

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.