Steven D'Aprano <steve+pyt...@pearwood.info> added the comment:

I'm sorry, I have no idea how to read an Anaconda notebook file. In the browser 
it looks like some sort of nested dictionary. I can find the code:

j = [1, 2, 3, 4]
k = [5, 6, 7, 8]
z = zip(j, k)
for x, y in z:
    for m, n in z:
        print (x, y, m, n)


but I'm not sure what result you are getting or what results you expect.

----------
nosy: +steven.daprano

_______________________________________
Python tracker <rep...@bugs.python.org>
<https://bugs.python.org/issue32242>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe: 
https://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com

Reply via email to