+ 2
[SOLVED]Resources for NUMPY
Recommend some resources for NUMPY to understand it properly
6 Respostas
+ 4
Abhinav Singh a good place to begin is
```https://numpy.org/learn/```
Then
```https://www.codecademy.com/article/introduction-to-numpy-and-pandas```
As I recall freecodecamp also has some good information on numpy as well.
+ 3
This will help you:
https://youtu.be/GB9ByFAIAH4?si=wkVmIZLQ5cJWw3tZ
+ 1
Thank you for your ans but can you suggest me some video tutorials as I am a video person
+ 1
# Abhinav Singh ,
# One quick option is to use the built-in
# help function to read the docstrings
# in any module.
import numpy
help(numpy)
# Or you can focus on a subpart
# of a module by getting its help.
help(numpy.sort)
# etc.
0
0
Hello