what does 'for _ in range()' mean?

Leif K-Brooks eurleif at ecritters.biz
Wed Jul 28 18:35:51 EDT 2004


David Eppstein wrote:
> >>>def foo(_,_): pass

The best solution then would probably be:

def foo(*_):
	pass



More information about the Python-list mailing list