Skip to content
This repository was archived by the owner on Aug 11, 2023. It is now read-only.

Commit fe99b48

Browse files
committed
Update numpy
1 parent dbc6b8f commit fe99b48

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,7 @@
153153

154154
---
155155
### New Cource (Temp)
156+
- [**NumPy**](/lessons/python/modules/numpy/README.md)
156157
- [Test](concepts/test/README.md)
157158
---
158159

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import numpy as np
2+
3+
L = [
4+
[1, 2, 3, 4, 5],
5+
[1, 2, 3, 4, 6],
6+
[1, 2, 3, 4, 7],
7+
[1, 2, 3, 4, 8],
8+
]
9+
10+
N = np.array(L)
11+
12+
F = N[N >= 4]
13+
14+
print(F)

0 commit comments

Comments
 (0)