From fa936a9604a33cd968416436c31cf7c533a9c95d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mert=20G=C3=B6r?= Date: Sun, 11 Jun 2023 14:09:37 +0300 Subject: [PATCH] =?UTF-8?q?i=C3=A7lemler=20if?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- python-temel/iclemler.if.py | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 python-temel/iclemler.if.py diff --git a/python-temel/iclemler.if.py b/python-temel/iclemler.if.py new file mode 100644 index 0000000..2c2171b --- /dev/null +++ b/python-temel/iclemler.if.py @@ -0,0 +1,3 @@ +a = [3, 6, 8, 34, 23, 90, 37, 42, 43] +b = [x for x in a if x % 2 == 0] +print(b)