Template:Comment
From FreeAllegiance Wiki
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")