Function parameters and return values python In Hindi

Function parameters and return values python In Hindi पायथन फ़ंक्शन प्रोग्राम में डिक्लेअर पैरामीटर/आर्गुमेंट वेरिएबल को इनपुट प्रोसेस और मेन्युप्लेट किये जाते हैं, और यूजर डिफाइन फंक्शन वैल्यूज प्रोग्राम आउटपुट के रूप में वेरिएबल वैल्यूज को रिटर्न कर सकते हैं। So let’s go through the Python function program to understand how Python functions work, and…

Comments Off on Function parameters and return values python In Hindi

Defining functions python In Hindi

Defining functions python In Hindi पाइथन प्रोग्रामिंग में फंक्शन किसी विशेष प्रोग्रामिंग उदेश्यो के लिए क्रिएट किए जाते है. पायथन प्रोग्राम में फ़ंक्शन डिफाइन करने के बाद आप इन फंक्शन प्रोग्राम कोड के री-यूजेबल ब्लॉक कोड मे ग्रुप कर सकते हैं। फंक्शन बड़े पाइथन प्रोग्राम कोड ब्लॉक को स्माल प्रोग्राम मॉडुल में कन्वर्ट करते है.…

Comments Off on Defining functions python In Hindi

Dictionaries in Python

Dictionaries in Python In Python programming, the dictionary (dict) data type is a powerful data storage element structure that helps Python programmers to store declared dictionary data elements in key-pair order. Remember, Python dictionary data types are mutable, unordered collections of dictionary objects. Where in each Python program, declared dictionary items are stored and processed…

Comments Off on Dictionaries in Python

Python Tuples  

Python Tuples   In Python programming, a tuple is a data storage element structure similar to a list data type. But while you can modify Python list elements after declaring them, an important difference in Python tuples is that Python tuples are not modified after declaration in the program. This means that once you declare…

Comments Off on Python Tuples  

Python Lists

Python in Lists List data type is a universal and fundamental data structure storage element in Python programming language. It allows Python programmers to store and manipulate the storage of data items in a sequential order. Remember that list items declared in Python program are modifiable at any time, which means you can modify the…

Comments Off on Python Lists

Dictionaries in Python In Hindi

Dictionaries in Python In Hindi पायथन प्रोग्रामिंग में डिक्शनरी (dict) डाटा टाइप एक पॉवरफुल डेटा स्टोरेज एलिमेंट स्ट्रक्चर है. जो पाइथन प्रोग्रामर को की-पेअर आर्डर में डिक्लेअर डिक्शनरी डेटा एलिमेंट को स्टोर करने में सहायता प्रदान करता है। याद रहे पाइथन डिक्शनरी डाटा टाइप परिवर्तनीय होते है, जहा डिक्शनरी ऑब्जेक्ट्स के अनऑर्डर कलेक्शन हैं. जहाँ…

Comments Off on Dictionaries in Python In Hindi

Tuples In Python In Hindi

Tuples In Python In Hindi पायथन प्रोग्रामिंग में टपल एक लिस्ट डाटा टाइप के समान ही एक डेटा स्टोरेज एलिमेंट स्ट्रक्चर है. लेकिन जहा आपने पाइथन लिस्ट एलिमेंट डिक्लेरेशन के बाद उन्हें मॉडिफाई किया जा सकता है, वही पाइथन टपल में एक महत्वपूर्ण अंतर यह है की, पाइथन टपल प्रोग्राम में डिक्लेरेशन के बाद मॉडिफाई…

Comments Off on Tuples In Python In Hindi

Python Lists In Hindi

Python Lists In Hindi पाइथन प्रोग्रामिंग लैंग्वेज में लिस्ट डाटा टाइप एक यूनिवर्सल और फंडामेंटल डेटा स्ट्रक्चर स्टोरेज एलिमेंट है. जो पाइथन प्रोग्रामर को सीक्वेंस आर्डर से स्टोरेज डाटा आइटम के स्टोरेज को स्टोर और उन्हें मेन्युप्लेट कर सकते है। याद रखे पाइथन प्रोग्राम में डिक्लेअर लिस्ट्स आइटम कभी भी मॉडिफाई हो सकती हैं, जिसका…

Comments Off on Python Lists In Hindi

Using break and continue statements in python

Using break and continue statements in python The break and continue statements in Python programming are the control flow statements in the program. They help the Python programmer to control the behavior of the program loop (for and while loop) based on some specific conditions like break and continue. So let’s see how break and…

Comments Off on Using break and continue statements in python

Loops (for, while) in python

Loops (for, while) in python Loops in Python programming are typically used to repeat a program code logic statement or execute it a finite or unlimited number of times. Generally, for loop and while loop are used in Python programs to repeat a particular block of program code a certain number of times. For loop…

Comments Off on Loops (for, while) in python