Skip to content

Commit a16ef2b

Browse files
committed
Adding array_numpy.py
1 parent 824a11b commit a16ef2b

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

0008-Array-NumPy/array_numpy.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
"""
2+
This program demonstrates the use of the NumPy arrays in Python.
3+
"""
4+
5+
# array_numpy.py
6+
7+
import numpy as np
8+
9+
NUM_ARRAY = np.array([2, 4, 6, 8, 10])
10+
print("NumPy array:", numpy_array)

0 commit comments

Comments
 (0)