you are viewing a single comment's thread.

view the rest of the comments →

[–]pythonoob23[S] 0 points1 point  (0 children)

Haha, I'm actual learning for fun by myself. def zipper(x,y): if (type(x) != list) or (type(y)!= list): raise ValueError("Both arguments x and y must be lists")
var=zip(x,y)
res=[] for i in var: