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 don't need to use the asterisk to accept a list.
Simply give the argument a name in the definition, and pass in a list like
def takes_list(a_list): for item in a_list: print item