içlemler if

This commit is contained in:
Mert Gör 🇹🇷 2023-06-11 14:09:37 +03:00
parent f65aafc959
commit fa936a9604
No known key found for this signature in database
GPG key ID: 2100A876D55B39B9

View file

@ -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)