python for loop without variable code example
Example: for i in range without i
def loop(f,n):
for i in xrange(n): f()
loop(lambda: <insert expression here>, 5)
def loop(f,n):
for i in xrange(n): f()
loop(lambda: <insert expression here>, 5)