Introduction of Python In Hindi: History, Features & Applications

Introduction of Python In Hindi: Basics Of Python In Hindi


Python ये सभी Programming Languages में से Sabse aasan Language है |

Python Ye ek High-Level Object-Oriented Programming Language है |

Python में जैसे English Language होती है Lagbhag Vaise Hi code python language में होता है |

Python ये Language open source Language है | Ye Kisi OS Platform पर free में उपलब्ध है |

अगर Python Language को Sikhna Ho तो किसी भी Basic Programming Language की जरुरत नहीं है |



Introduction of Python

History Of Python In Hindi

Python Language का अविष्कार 'Guido Van Rossum' इस dutch programmer Ne Kiya.

Python की शुरुआत 1980 Me Ki Aur करीब एक दशक साल बाद में python को 1991 में launch किया गया |

Why Named Python?

1969 में Monty Python Group द्वारा दिग्दर्शित की गयी Monty Python’s Flying Circus ये series Prashrit Ki गयी थी |

Guido Van Rossum इस series को Kafi Pasand करते थे | इसके चलते ही उन्होंने अपने Computer Language का नाम 'Python' रख दिया |

Python Language का नाम किसी भी सर्प के नाम Se Liya नहीं गया है |

Python Programming Features 



  • Easy to Learn
  • Easy to Understand
  • Easy to Read
  • Portable
  • A large Number of Libraries
  • Open-Source and Free
  • Object-Oriented
  • Embeddable
  • Extensible

Easy to Learn :

Python ये language C, C++ और Java Language Jaisi Hai | इस Language में ज्यादा keywords न होने की वजह से काफी आसानी Se Sikhi जा सकती है |

Easy to Understand :

Plain English के जैसे syntax Hone Ki Vajah से काफी अच्छे से समझ आती है |

Easy to Read :

Python का Program Jyada Penchida न होने से पढ़ने में आसानी प्रदान करता है |

Simple :

Python Language Padhane Aur समझने में बहुत ही आसान है | ये Language पढ़ने में ज्यदातर plain English जैसी होती है |

Portable :

Python का program एक platform(OS) Se Dusre platform पर port करके execute किया जाता है |

Large Number of Libraries :

Python में बहुत सारी libraries Hoti Hai जिससे किसी specific code को अलग से नहीं लिखना पड़ता है |

Open-Source and Free :

Python का software Muft Me वितरित किया जाता है | Python का code Padha Ja सकता है या उसमे कुछ फेरबदल भी किये जा सकते है | इसको व्यवसायिक Rup Me भी इस्तेमाल किया जाता है |

Object-Oriented :

C++ और Java Ke Sath Ye Language भी एक Object-Oriented Language है | Object-Oriented होने के कारण Program Ko Samjhane में आसानी प्रदान करता है |

Embeddable :

Python को C, C++ या आदि Languages Ke Sath embed किया जा सकता है |

Extensible :

अगर किसी दूसरे language का code Acche Se काम नहीं कर रहा है या धीमी गति से काम कर रहा है तो उसके Badale Me Python को इस्तेमाल किया जा सकता है |


Applications Of Python In Hindi: Uses Of Python

  • Scientific and Computational Applications
  • Web Applications
  • Gaming Applications
  • ERP Applications
  • Graphical Applications

1. Scientific and Computational Applications

Scientific और Computational Operation के लिए Python में कुछ libraries Aati Hai जैसे कि, scientific computing के लिए SciPy और Numeric computing के लिए NumPy library Ka Istemaal किया जाता है |

2. Web Applications

Python की मदद से Web Applications Banane Ke Liye Content Management System(CMS) और Frameworks का इस्तेमाल किया जाता है जैसे कि, Django, Bottle, Flask और CherryPy और भी कई Frameworks Ka Istemaal किया जाता है |

3. Gaming Applications

Game Development के लिए Python Me Kuch modules, libraries का इस्तेमाल किया जाता है जैसे कि, Soya3D और Panda3D ये framework high-level 3D games को develop करने Ke Liye इस्तेमाल किया जाता है |

4. ERP Applications

Enterprise और Business Applications Ke Liye ERP5, ERPNext और OpenERP का इस्तेमाल किया जाता है | Youtube, Yahoo और reddit इनमें Python Ka istemaal किया गया है|

5. Graphical Applications

Graphics Design के लिए Python में Python-Orge, PyQt, PyGtk Aur aadi frameworks का इस्तेमाल किया जाता है |

Install Python on Local Computer

Step 1 (Download Python IDLE) :

Python को मुफ्त में download Kiya Jata है | Python को download करने के लिए http://www.python.org/downloadsइस link Par Jakar latest(3.6.1) version को download करें, चाहे तो अपने जरुरत के हिसाब Se Koi भी versions download किये जा सकते है|

Step 2 (Installing Python) :

Download करने के बाद download हुई file को double click Karke Install करे |

Step 3 (Open Python IDLE) :

जहा पर उसे install किया गया है उस path Par Jakar उसे open करे |

Step 4 (Python Program in Shell) :

Python के साधारण से Program Ko Shell में लिखिए |

Step 5 (Create .py file) :

Shell के बावजूद python program Ko Apne computer पर save करने के लिए Shell में file menu पर जाकर new(Ctrl+N) पर click करके अपना program लिखे |Save Karne Ke Liye Ctrl+S या file में save button पर click करे | उसके बाद उसे Naam Dekar .py के साथ वो default set किया जायेगा | अगर extension Diya Bhi जाता तब Bhi Koi Dikkat नहीं आती है| For ex. new.py

Step 6 (Run .py file) :

Python file को save करने के बाद उसे Run Karne Ke Liye Run में Run Module या F5 का इस्तेमाल करे |

'Hello World' Program in Python

In Shell

>>> print("Hello World")
Hello World #Output
Save new.py

print("Hello World")

Output :
Hello World

Difference Between Version 2.7.x and Version 3.x.x

In 2.7.x

Python 2.7.x में print ये function नहीं होता है |

print "Hello World"
a = 1 / 2
print a

Output :
Hello World
0

In 3.x.x

Python 3.c.x में print() ये function hota है |

print "Hello World"
a = 1 / 2
print a

Output :
Hello World
0.5

******************************************************************************

Topic Covered Here:

Introduction of Python In Hindi, Basics Of Python In Hindi, History Of Python In Hindi, Why Named Python?Python Programming Features, Applications Of Python In Hindi, Uses Of Python,  Introduction Of Python In Hindi, Python Kya Hai, History of Python In Hindi, Features of Python In Hindi

*****************************************************************************

2 टिप्पणियाँ

और नया पुराने

संपर्क फ़ॉर्म