Chapter folders renamed

This commit is contained in:
Karan Solanki
2021-08-13 11:44:51 +05:30
parent d9f3f5b159
commit 1eb709f83a
211 changed files with 0 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
# lambda2.py to get even numbers from a list
mylist = [1, 2, 3, 4, 5,6,7,8,9]
new_list = list(filter(lambda x: x % 2 == 0, mylist))
print(new_list)