I am unable to understand the use of the pass statement in Python.
I have found some sample code here in which there is a pass statement but I am unable to figure out what it is useful for in this context:
for letter in 'Python': if letter == 'h': pass print 'This is pass block' print 'Current Letter :', letter