Skip to content

Commit c12db4c

Browse files
committed
add Day1 homework
1 parent 8bf4bc3 commit c12db4c

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

D01/homework.py

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import numpy as py
2+
3+
print(py.__version__)
4+
5+
EquDifference = py.arange(0,21,1)
6+
print(EquDifference)
7+
print([ x for x in EquDifference if x%2==0])
8+
print([ x for x in EquDifference[1:] if x%3==0])

0 commit comments

Comments
 (0)