We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d63cfe commit 27f1a0eCopy full SHA for 27f1a0e
examples/python-snippets/basics/zip-ex.py
@@ -0,0 +1,6 @@
1
+a = ["one", "two", "three", "four", "five"]
2
+b = [0, 9, 10, 11, 12]
3
+
4
+for x in zip(a, b):
5
+ print x
6
0 commit comments