I have a function that has two arguments that are both lists as shown below
def myfunc(arg1, arg2): return arg1*arg2 arg1 = [1,2,3,4] arg2 = [10,9,8]