From 6db47ca7c9e0b334164e4356a62d41b1e1dc5f81 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mert=20G=C3=B6r?= Date: Mon, 12 Jun 2023 15:24:54 +0300 Subject: [PATCH] zip function 4 --- python-temel/zip.function.4.py | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 python-temel/zip.function.4.py diff --git a/python-temel/zip.function.4.py b/python-temel/zip.function.4.py new file mode 100644 index 0000000..cf3742d --- /dev/null +++ b/python-temel/zip.function.4.py @@ -0,0 +1,2 @@ +for x, y, z in zip(range(0, 5), range(10, 15), range(20, 25)): + print(x, y, z)