We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bf4bc3 commit c12db4cCopy full SHA for c12db4c
D01/homework.py
@@ -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