içlemler a A

This commit is contained in:
Mert Gör 🇹🇷 2023-06-11 14:47:28 +03:00
parent 5cc9c28990
commit f5fb481ca5
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9

View File

@ -0,0 +1,3 @@
names = ['Ali', 'veli', 'ayşe', 'Selami', 'fatma', 'Arzu']
anames = [name for name in names if name[0] == 'a' or name[0] == 'A']
print(anames)