I am currently learning Python, and could really use help from experienced coders with help to getting started on solving this assignment:
Using os.walk, write a script that will print the filenames of zero length files. It should also print the count of zero length files.
Write a script that will list and count all of the images in a given HTML web page/file. You can assume that:
Each image file is enclosed with the tag <img and ends with > The HTML page/file is syntactically correct
Any input is much appreciated!