Template:Comment

From FreeAllegiance Wiki
Revision as of 15:30, 13 February 2009 by Badpazzword (talk | contribs)
Jump to navigationJump to search

{{{1}}}

Usage sample

def list(*stuff): #accept a list as argument
  return ", ".join(stuff)

#All of the following are valid calls.
print list("foo")
print list("foo", "bar")
print list("foo", "bar", "bananana")