Table of Contents
NumPy Tutorial
Table of Contents
NumPy Tutorial
NumPy in Hindi
What is NumPy in Hindi
NumPy एक Python library है जो mainly arrays, matrices और mathematical functions के लिए use किया जाता है। NumPy को Numerical Python भी कहा जाता है ये देखने में तो Python List जैसा होता है but दोनों का काम अलग-अलग होता है।
How to Install NumPy in Hindi
ये python की library है इसलिए हमारे computer में पहले से python install होना जरूरी है, अब NumPy को install करने के लिए हमें अपने computer में command terminal को open करना है और उसमें pip install numpy लिखकर enter press कर देना है अब कुछ ही time में numpy हमारे computer में install हो जाएगा।
Some Important Features of NumPy in Hindi
Arrays : Python में हम array के लिए list का use करते हैं but NumPy में भी array होता है जो की list से काफी fast होता है।
Mathematical Operation : NumPy में हम addition, subtraction, multiplication, division, etc जैसे mathematical operations easily कर सकते हैं।
Linear Algebra : NumPy में हम matrices के operations को भी कर सकते हैं।
Random Number Generation : NumPy एक function होता है, जिसके help से हम कोई भी random number generate कर सकते हैं।
Integration : NumPy का use हम SciPy, Matplotlib जैसे libraries के साथ आसानी कर सकते है।
Basic Example of NumPy
import : python library को अपने program मे use करने के लिए उसे अपने program मे import करना होता है, इसके लिए “import” use करते है। जैसा की इस example code के 1st line मे हमने NumPy को import किया है import numpy as np
यहाँ पर हमने “as” का use करके matplotlib को एक short form दिया है np,इससे होता ये है की अब जहां भी हमे NumPy लिखने की जरूरत होगी तो वह हम सिर्फ np लिखेंगे हमारा काम हो जाएगा । आप np के जगह कुछ भी ले सकते है but वो meaningful रहे, आम तौर पर हम np का ही use करते है ।
- All Posts
- Artificial Intelligence
- Computer Fundamentals
- Computer Networks
- Data Analytics
- Data Science
- DBMS
- Deep Learning
- Digital Electronics
- DSA with Python
- Excel
- Exercise
- Git & Github
- Machine Learning
- Matplotlib
- Natural Language Processing
- NumPy
- Operating System
- Pandas-s
- Power BI
- Python Tutorial
- Scikit-learn
- Seaborn
- SQL & MySQL

Table of Contents All Chapters 1. Personal Area Network 2. Local Area Network 3. Campus Area Network 4. Metropolitan Area...

Table of Contents All Chapters 1. Data Communication 2. Types of Data Communication 2.1. Simplex 2.2....

Table of Contents All Chapters 1. Special Logic Gate 2. XOR Gate 2.1. XOR Gate Truth Table 3....

Table of Contents All Chapters 1. Universal Logic Gates 2. NOR Gate 2.1. NOR Gate Truth Table 3....

Table of Contents All Chapters 1. Logic Gate 2. AND Gate 2.1. AND Gate Truth Table 3. OR...

Table of Contents All Chapters 1. Simplification 2. Simplification using Boolean Algebra Theorems 3. Simplification using K-map Digital Electronics...

Table of Contents All Chapters 1. Identity Laws 2. Null Laws 3. Domination Laws 4. Idempotent Laws 5. Complement Laws...