Login
Remember
Register
Ask a Question
how to identified last number of numpy array?
+2
votes
asked
Jul 4, 2021
in
NumPy
by
sharadyadav1986
how to identified last number of numpy array?
numpy-array
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jul 4, 2021
by
sharadyadav1986
num = np.array([5,15,25,35]) if not added
print(‘\n forth position : ‘,num[3])
...