Can someone explain why the else:pass shown below is needed in order for the rest of the code (the final print 'processing... statement) to be executed? Note the print in the else was put there just so I could tell that execution was indeed taking that path.
It seems like that should happen whenever the continue isn't executed since code in the else does nothing. However, if I leave the else out, nothing further in the for loop appears to be executed when the condition is False -- when files with the extension do exist in the directory -- which doesn't make sense to me. The docs say continue "continues with the next cycle of the nearest enclosing loop", fine, but if one is not executed, shouldn't processing should proceed to the next statement?
import os
source_dir = r'C:\Downloads'
ext = '.mp3'
for dirName, subdirList, fileList in os.walk(source_dir):
if not any(os.path.splitext(fileName)[1].lower() == ext for fileName in fileList):
print ' skipping "{}"'.format(dirName)
continue
else: # why is this clause needed to continue this iteration of a loop?
print 'contains "{}"'.format(dirName)
pass
print 'processing "{}" which has "{}" files'.format(dirName, ext)
Mystery Solved
The seemingly strange behavior was due to an indentation problem which is not visible in the code above nor normally in my text editor. It turned out that the last print statement was indented by 3 spaces then a tab, which makes it appear to align with the else, but in fact it either follows the the pass in the else if it's there, or follows the continue in the first part of the if. Obviously confusing me a great deal.
Here's a screenshot of the code in my text editor with its "show space/tabs" option turned on. The red dots represent spaces and the red >> represents a tab character:

.mp3to.txtand searched a different path, but otherwise I ran you code. It worked as expected in both cases ... – mgilson Feb 15 at 18:16elsecan also be attached tofor.) – delnan Feb 15 at 18:16passif there's another statement in that block (in this caseprint.) – Wooble Feb 15 at 18:19else:and the two line following it, theprint 'processing...never happens. However, withelse:in, theprint 'contains...executes followed every time by theprint 'processing...-- so theelse:appears to be required for the latter to happen. – martineau Feb 15 at 18:22