In the following program, what is the "values" function?
for tank in tanks.values():
if tank.alive:
print tank.name, "is the winnter!"
break
I looked it up using Wing IDE and this is what I found.
def values(self, arg):
""" D.values() -> list of D's values """
return []
Thanks for any and all replies.