Initial commit

This commit is contained in:
Arjun Patel
2019-02-20 15:09:59 -08:00
commit 6577e0cbea
59 changed files with 2480 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
nums = [1, 2, 3, 4, 5, 6]
oddNums = [x for x in nums if x % 2 == 1]
print(oddNums)
oddNumsPlusOne = [x + 1 for x in nums if x % 2 == 1]
print(oddNumsPlusOne)