Write a Python program that finds the 5 biggest file anywhere on your desktop or below. Steps 1) Get os.walk to work, printing it's output. 2) Make a list of all the files that exist on the system. I.e. append all the files that os.walk() gives you into a big list, prepending 'root' and '/' to each one first. 3) Make a list of [size, filepath] items. Use os.stat and st_size. 4) Sort that. 5) Print the top 5. Hint: This took me 13 lines of code. Code for you: import os for root, dirs, files in os.walk("\\Users\\rappleto\\Desktop"): print(root, dirs, files)