I am having problems with the dict(zip(x, y))
function when I pass the two lists as a parameter ( x
and y
) zip
does not create the original size list, randomly creates the list in its original size, but most always between 2 to 5 values less. This supposes for x
that has size 100 and y
also size 100. Both x
and y
have the same size. How do I solve this? Many thanks!