>>> import glob>>> for file_name in glob(r'*'):... print file_name...Traceback (most recent call last): File "<stdin>", line 1, in ?TypeError: 'module' object is not callable
>>> for file_name in glob.glob(r'*')