Print Friendly, PDF & Email

आइए पायथन की विशेषताओं के बारे में बात करते हैं, हम इसका उपयोग क्यों करते हैं?

यह समुदाय में बहुत लोकप्रिय है। इसमें  विभिन्न  Third Party मॉड्यूल हैं; बहुत सारी चीजें ओपन सोर्स हैं।

कई समुदाय इस पर निशुल्क काम कर रहे हैं।

मान लें कि  आप  प्रोग्रामिंग सीख रहे हैं और आप Python को संपादित करना चाहते हैं। इसमें अधिकांश मॉड्यूल ओपन सोर्स हैं।

इसमें व्यापक library support है। उदाहरण के लिए,  आप कुछ हटाना चाहते हैं, या कुछ बनाना चाहते हैं, या चेहरे की पहचान करने जैसे आर्टिफिशियल इंटेलिजेंस के लिए जाना चाहते हैं, हमारे पास अधिकांश कार्यों के लिए library उपलब्ध हैं।

गूगल ने Python के लिए एक लाइब्रेरी भी बनाई है, जिसका नाम TensorFlow के नाम पर रखा गया है ।

Python का कोड जिसे हमने अभी डाउनलोड किया है वह भी खुला स्रोत है, और Python कोड को संपादित करना पूरी तरह से कानूनी है। और वहां विशाल समुदाय उपलब्ध है जो मुफ्त में यह सब कर रहा है ।

इसमें उत्कृष्ट मदद उपलब्ध, जैसे कि यदि आप एक Project बना रहे हैं और आप  इसे हल करने में सक्षम नहीं हैं, तो आपको बस Google पर अपनी त्रुटि को खोजने की आवश्यकता है, आपको वहां से समाधान प्राप्त होगा। लोग StackOverflow.com पर सहयोग प्रदान कर रहे हैं ।

पायथन में जावा के विपरीत बहुत सीमित डेटा संरचना है। जावा डेटा संरचना में बहुत जटिल है। Python में डेटा संरचना बहुत उपयोगकर्ता के अनुकूल है।

उत्पादकता और  गति बहुत अधिक है। बहुत सारे लोग इस पर काम कर सकते हैं ।

XKCD कॉमिक बहुत प्रसिद्ध है, और इसका joke “You are Flying, How?” “Python” बहुत प्रसिद्ध है और यहां तक कि Python समुदाय ने इस joke को अपने कोड में शामिल किया है जब इसका संस्करण 3.0 लॉन्च किया गया था। यदि आप Python में import antigravity run करते हैं, तो यह इस कॉमिक पर ले जाएगा।

Python में स्क्रीन या प्रिंटिंग पर कुछ दिखाना बहुत आसान है। हैलो वर्ल्ड प्रिंटिंग जैसे पहले बहुत जटिल था, हम कुछ library को शामिल करते थे, या कुछ प्रिंट करने के लिए कुछ class बनाते थे, लेकिन Python में यह बहुत सरल है। हमें बस टाइप करने की आवश्यकता है print (“Hello World”)।

यदि हम इसे जावा में देखते हैं तो कोड कुछ इस तरह हुआ करता था class HelloWorld {public static void main (string args[]) {system.out.printIn(“Hello World”);}}, इसी तरह प्रिंटिंग C++ में बहुत कठिन थी। सबसे पुरानी भाषाएं जो असेंबली पर काम करती थीं, कोड  बहुत  जटिल हुआ करता था। और किसी से परामर्श किए बिना सरल कार्य करना लगभग असंभव था।

इसलिए, प्रोग्रामिंग पिछले 50 वर्षों में बहुत दूर आ गई है, इसका उपयोग करना बहुत आसान है। जावा शायद ही कभी इंटरनेट संचालित कार्य करने के लिए इस्तेमाल किया गया है जैसे अमेज़न से कीमतों को उठाना या मौसम की जानकारी API से प्राप्त करना । लेकिन ये कार्य Python में बहुत सरल हैं।

हम अगले वीडियो में Python के बारे में अधिक जानेंगे, या आप कदम दर कदम से पूरा  पाठ्यक्रम देखने और विज्ञापन मुफ्त ऑफ़लाइन वीडियो डाउनलोड करने के लिए www.smartosystems.in से हमारी VITAL श्रृंखला खरीद सकते हैं।

Why Python? Let’s talk about the features of Python, why we use it? It’s very popular in community. It has various third-party modules; lot of things are open source. Many communities are working on it free of cost. Let’s say you are learning programming and you want to edit python you can. It has most of the modules open source. It has extensive library support. For example, you want to delete, or create something, or want to go for artificial intelligence like identifying faces, we have libraries available for most of the tasks. Google has created a library for python too named as TensorFlow. The code of python that we just downloaded is also open source, and it is totally legal to edit python code. And there is vast community available who is doing this for free. It has excellent support, like if you are creating a project and you are not able to solve this, you simply need to search your error on google, you will get solutions from there. People are providing support on Stack Overflow. Python has very limited Data Structure unlike Java. In Java data structure is very complex. Data structure in python is very user friendly. Productivity and speed are very high. Lot of people can work on it. XKCD comic is very famous, and its joke “How’re you flying” “Python” is very famous and even python community has included this joke in its code when its version 3.0 was launched. If you type import antigravity in python, it will take to this comic. Showing something on screen or printing is very easy in python. Like printing Hello World was very complicated earlier, we used to include some library, or create some class to print something, but in python its much simple. We just need to type print (“Hello World”). If we see it in Java the code used to be something like class HelloWorld {public static void main (string args[]) {system.out.printIn(“Hello World”);}}, similarly printing was very tough in C++. The oldest languages those worked on Assembly, the code used to be much complicated. And it was nearly impossible to do simple tasks without consulting someone. So, programming has come too far in last 50 years, it is very easy to use. Java has rarely been used to do some internet driven tasks like picking prices from Amazon or getting whether from whether API. But these tasks are very simpler in python. We will learn more about python in next videos, or you may buy our VITAL series from www.smartosystems.in to watch complete course step by step and to download Ads Free Offline Videos.

{:}

Leave a Reply