import os
for dirname, dirnames, filenames in os.walk('# I will have a directory here'):
for filename in filenames:
print (os.path.join(dirname, filename))
It is meant to print the directory for some files in Python. But apart from that I know little... Thanks... There are other pages with the code but it didn't fully explain it in a 'guide for dummies' style.. So I was a little confused. Thanks for your help..:)