इस लेख में, हम जानेंगे कि कौन सी विशेषताएं अजगर को शांत और अन्य भाषाओं से अलग बनाती हैं।
>>>import this
आउटपुट
The Zen of Python, by Tim Peters Beautiful is better than ugly. Explicit is better than implicit. Simple is better than complex. Complex is better than complicated. The flat is better than nested. Sparse is better than dense. Readability counts. Special cases aren't special enough to break the rules. Although practicality beats purity. Errors should never pass silently. Unless explicitly silenced. In the face of ambiguity, refuse the temptation to guess. There should be one-- and preferably only one --obvious way to do it. Although that way may not be obvious at first unless you're Dutch. Now is better than never. Although never is often better than *right* now. If the implementation is hard to explain, it's a bad idea. If the implementation is easy to explain, it may be a good idea. Namespaces are one honking great idea -- let's do more of those!
एक लाइन में दो वैरिएबल की अदला-बदली
जैसा कि नीचे दिखाया गया है, हम सिंगल स्टेटमेंट के रूप में एक ही समय में कई वेरिएबल के लिए वैल्यू असाइन कर सकते हैं
उदाहरण
a = 201 b = 786 print("Before swapping value of a ="+str(a)+" and b = "+str(b)) #Before swapping value a, b = b, a print("After swapping value of a ="+str(a)+" and b = "+str(b)) #After swapping value
आउटपुट
Before swapping value of a =201 and b = 786 After swapping value of a =786 and b = 201
गणना प्रकार
प्रगणित प्रकार का उपयोग सूची और समान प्रकारों को वास्तव में उनकी लंबाई जानने के बिना पार करने के लिए किया जाता है।
उदाहरण
mylist = ['t','u','t','o','r','i','a','l'] for i, value in enumerate(mylist): print( i, ': ', value)
आउटपुट
0 : t 1 : u 2 : t 3 : o 4 : r 5 : i 6 : a 7 : l
ज़िप विधि
ज़िप विधि का उपयोग करके हम एक ही समय में कई सूचियों को पार कर सकते हैं जैसा कि नीचे दिए गए कोड में दिखाया गया है।
उदाहरण
mylist1 = ['t','u','t','o','r','i','a','l'] mylist2 = ['p','o','i','n','t'] for i,j in zip(mylist1,mylist2): print( i, ':', j)
आउटपुट
t : p u : o t : i o : n r : t
सूची को उलटना
बिल्ट-इन रिवर्स मेथड () का उपयोग करके हम बिना किसी लूपिंग कंस्ट्रक्शन के सीधे रिवर्स लिस्ट प्राप्त कर सकते हैं
उदाहरण
list_inp = ['t','u','t','o','r','i','a','l'] print(list(reversed(list_inp)))
आउटपुट
['l', 'a', 'i', 'r', 'o', 't', 'u', 't']
इंटरएक्टिव "_" ऑपरेटर का उपयोग करें।
पिछले ऑपरेशन के आउटपुट को प्रिंट या प्रदर्शित करने के लिए इस ऑपरेटर का उपयोग कमांड लाइन पर किया जाता है।
>>> 12 + 12 24 >>> _ 24 >>> print(_) 24
जैसा कि हम सभी जानते हैं कि पायथन में डेटा प्रकार की घोषणा की कोई आवश्यकता नहीं है और हम एक प्रोग्राम में डेटा प्रकार के चर को कई बार बदल सकते हैं।
निष्कर्ष
इस लेख में, हमने सीखा कि पायथन में कौन-सी सभी विशेषताएं मौजूद हैं जो इसे प्रोग्रामर्स के लिए कूल और अधिक आकर्षक बनाती हैं।