> Thanks Tiger12506!
> 
> This has helped me understand the function(*tuple) syntax, as well as
> providing me with a concrete example.
> 
> James

Cool. ;-)
Here's another, totally unrelated to counters and boards.
Kinda the opposite use of the * syntax I used earlier.

def printall(*li):
  for x in li:
    print x

printall(1)
printall(1,"yes")
printall(2,1,'y',3.14)

Cheers,
Tiger12506
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to