Home >> Python Tutorial >> Python Introduction
Edit Template
Edit Template

Python Introduction in Hindi

What is Python in Hindi

python एक high level, interpreted और object-oriented programming language है, मतलब इसका उपयोग करने में आसानी होती है और इसमें बहुत ही powerful features है. यह एक general-purpose programming language है मतलब इसका use  कई तरह की काम करने में किया जा सकता है. जैसे :- Web development, data science, automation, artificial intelligence, scripting, etc.

History of Python in Hindi

python  को Guido van Rossum ने 1980 में develop किया था. python का नाम एक British comedy show “Monty Python’s Flying Circus” से लिया गया था. आज पाइथन एक बहुत famous language बन गया है

Installing Python and Setting up in your environment

python को अपने system में install और setup करने के लिए video को stepwise fellow करें. अगर आपके पास computer नहीं है तो आप tablet या smartphone में भी python coding सीख सकते हैं, इसके लिए video end तक देखिए.

Write your First Code

🐍
hello world.py
Copy to clipboard
print("Hello, World!")

इसमें print एक built-in function है जिसका use output को screen पर display करने के लिए किया जाता है. अब function क्या होता है इसे हम आगे अच्छे से समझेंगे, but अभी के लिए आप इतना जान जाइए की जब भी हमें कुछ screen पर display करना होतो हम print का use करेंगे.

उम्मीद करते है कि आपको python operators अच्छे समझ मे आ गया होगा । अपने learning को continue रखने के लिए next button पर click करे,

Add a comment...

  • All Posts
  • Artificial Intelligence
  • Computer Fundamentals
  • Computer Networks
  • Data Analytics
  • Data Science
  • DBMS
  • Deep Learning
  • Digital Fundamentals
  • 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
Python Function

Table of Contents All Chapters 1. Python Function 2. Define Function 3. Function Arguments 4. Function Parameters 5. Local and...

Python Dictionary

Table of Contents All Chapters 1. Python Dictionary 2. Access Dictionary items 3. Change Dictionary items 4. Add items in...

Python Set

Table of Contents All Chapters 1. Python Set 2. Iterate Set items 3. Set Methods      3.1. Add items...

Python Tuple

Table of Contents All Chapters 1. Python Tuple 2. Access Tuple Items 3. Update Tuple 4. Iterate Tuple Items 5....

Python List

Table of Contents All Chapters 1. Python List 2. Nested List 3. Range List 4. List Indexing 5. list Methods...

Python String

Table of Contents All Chapters 1. Python String 2. String Indexing 3. String Slicing 4. String Concatenation 5. String Formatting...

Python Loops

Table of Contents All Chapters 1. Python Loops 2. While Loop      2.1. Nested While Loop 3. For Loop...

Edit Template
Scroll to Top