I\'ve been looking at passing arrays, or lists, as Python tends to call them, into a function.
I read something about using *args, such as:
def some
You can pass lists just like other types:
l = [1,2,3] def stuff(a): for x in a: print a stuff(l)
This prints the list l. Keep in mind lists are passed as references not as a deep copy.