Why can't we print "print(zip(a,b))" or simply "print(c)"?
a=[ "ab", "cd", "ef"]
b=["gh","ij","kl"]
c=zip(a,b)
if I try
"for i,j in c:
print(i,j)"
Output:
ab gh
cd ij
ef kl
But unable to print "print(c)", its giving like this "zip object at 0x025088C8 " WHY?