I am a complete newbie to python and attempting to pass an array as an argument to a python function that declares a list/array as the parameter.
I am sure I am declaring it wrong,
here goes:
def dosomething(listparam):
#do something here
dosomething(listargument)
Clearly this is not working, what am I doing wrong?
Thanks