NUMPY TUTORIAL
Course Content
-
1. Learn HTML In One Video
Free YouTube Video
-
2. Learn JavaScript In One Video In Hindi (2018)
Free YouTube Video
-
3. Python Tutorial For Beginners In Hindi (With Notes)
Free YouTube Video
-
4. Python Programming Course in Hindi (Advanced)
Free YouTube Video
-
5. Web Scraping Tutorial using Python and BeautifulSoup
Free YouTube Video
-
6. JavaScript Registration Form Validation - हिंदी में (Latest Tutorial 2019)
Free YouTube Video
-
7. Learn Bootstrap In Hindi In One Video - हिंदी में (Latest Tutorial 2019)
Free YouTube Video
-
8. C Language Tutorial For Beginners (With Notes)
Free YouTube Video
-
9. Learn Php In One Video In Hindi - हिंदी में (Latest PHP Tutorial 2018)
Free YouTube Video
-
10. Login And Registration Form Using Php & MySQL [Php Login System In Hindi]
Free YouTube Video
-
11. C++ Tutorial For Beginners: Learn C Plus Plus In Hindi
Free YouTube Video
-
12. Learn Python In Hindi In One Video - हिंदी में (Latest Tutorial)
Free YouTube Video
-
13. Learn jQuery In Hindi In One Video - हिंदी में (Latest Tutorial 2018)
Free YouTube Video
-
14. C Programming Tutorial For Beginners: Learn C In Hindi
Free YouTube Video
-
15. CSS 3 Tutorial For Beginners: Learn CSS In One Video In Hindi
Free YouTube Video
-
16. Android Development Tutorial in Hindi
Free YouTube Video
-
17. Git & GitHub Tutorial For Beginners In Hindi - हिंदी में (2019)
Free YouTube Video
-
18. 15 Minute Python Tutorial For Beginners In Hindi (Full & Complete Crash Course)
Free YouTube Video
-
19. Create A Responsive Website Using HTML, CSS And Bootstrap 4 In Hindi
Free YouTube Video
-
20. Login And Registration Form Using Php & MySQL [Php Login System In Hindi]
Free YouTube Video
-
21. Linux Tutorial For Beginners in Hindi
Free YouTube Video
-
22. Numpy Tutorial in Hindi
Free YouTube Video
-
23. How To Make a WordPress Website | Wordpress Tutorial for Beginners | Elementor Tutorial In Hindi
Free YouTube Video
-
24. Learn Python Programming For Free | Python Programming Tutorial In Hindi
Free YouTube Video
-
25. Java tutorial in hindi
Free YouTube Video
-
26. Learn JavaScript In One Video In Hindi (2020)
Free YouTube Video
-
27. Php Tutorial for Beginners in Hindi with MySQL Project
Free YouTube Video
Numpy Tutorial in Hindi
Numpy Tutorial :
What is Numpy ?
Why Numpy ?
What is Jupyter ?
Jupyter Overview :
Jupyter allow user to create notebooks.

When you import numpy as np, it describes that you have imported NumPy module in your python program with the alias or new name ‘np’. You can give any variable name instead of np but most commonly np is used as it also looks like acronym of NumPy.
Type of Numpy Arrays :
To create an array :

Here we have created an array which contains 1 row and 4 columns. Creating a numpy array is a very simple process coz you can create an array using any data type which contains collection of elements such as List, Dictionary and Tuple.
So, that’s how we can create a Single dimensional array.
Dtype : Datatype or Dtype tells about the type of data stored in the ndarray.
By default Numpy arrays are created with float data type. And every element of Numpy array is of same data type i.e. are homogenous.
To specify data type for an Array :
Here we have created an Array whose data type is int8.
List of dtpye :

Individual elements from Array :
To access elements from Numpy Array :
1 – Accessing Single Dimension Array :
For 1-D array accessing element is very easy i.e. simply write <1-D Array>[].
E.g.
2 – Accessing Multi-Dimensional (2-D) Array :
For 2-D array, Elements can be accessed as –
<2-D array>[ , ] or
<2-D array>[][ ]
For E.g.
Comments
Post a Comment