To iterate all files, including in sub directories, use os.walk:
import os
for root, folders, files in os.walk(root_dir):
for filename in files:
print root, filename
root_dir can be "." to start from current directory, or any other path to start from.
Python 3.x3.5
If ...