What are you trying to call? What are param1 and param2 (you never show them in any code)? And why are you using map? map(lambda x, y: (x, y), l1, l2) is a slow, ugly way to write zip(l1, l2).
– ShadowRanger
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.OkRead more
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.Learn more!
param1
andparam2
(you never show them in any code)? And why are you usingmap
?map(lambda x, y: (x, y), l1, l2)
is a slow, ugly way to writezip(l1, l2)
. – ShadowRanger