I am sure this is a very basic question and I have checked the web for answers but alas none has come up.
I am learning python 3.5 and I have installed Anaconda. I am trying to learn about and use the built-in function zip() but when I type something like (in my Jupiter notebook)
a = [1,2,3]
b = [4,5,6]
zip(a,b)
I get <zip at 0xXXXXX>
as the output, where XXXXX is some (random) set of characters. I was expecting
[[1,4],[2,5],[3,6]]
as the output. Is there something wrong or are my expectations incorrect?
Thanks in advance!