Utofauti wake ni huu hapa:
zip function yenyewe ita~map elents zilizopo kwenye list moja into list nyingine in a way that kama list moja ina number of items less than the other basi ita~map only until elements of one of the lists have been matched completely then ita~acha the rest of the values out, Lakini unavotumia map ndio maana unaanza na parameter 'None' yaani hata kama element itakosa mwenzake itakua mapped to None mfano:
L1 = (a, b, c)
L2 = (w, x, y, z,1)
zip (L1, L2) - (a, w) (b,x) (c, y)
map(None, L1, L2) -(a, w) (b,x) (c, y) (None, z)(None,1)
Kwa hiyo change the length of your lists then try again, you'll notice the difference.
Alafu these kinda small stuffs as a programmer em jifunze ku~google around, I'm sure u can find your answer in less than 30seconds, way quicker than the time u used to write this post.