Loops for while In python Hindi

Loops for while In python Hindi पायथन प्रोग्रामिंग में लूप का उपयोग विशेष रूप से किसी प्रोग्राम कोड लॉजिक स्टेटमेंट को रिपीट करने या एक सिमित या असीमित नंबर तक एक्सेक्यूट करने में होता है. सामान्य तोर पर पाइथन प्रोग्राम में फ़ॉर लूप और व्हाइल लूप, को प्रोग्राम कोड के एक विशेष ब्लॉक को कई…

Comments Off on Loops for while In python Hindi

Conditional statements (if, elif, else) python In Hindi

Conditional statements (if, elif, else) In Hindi पायथन प्रोग्रामिंग में कंडीशनल स्टेटमेंट्स में आप (if, elif, और else ) कंडीशनल प्रोग्राम लॉजिक का उपयोग करके कुछ पाइथन प्रोग्राम बेस्ड सिंगल या मल्टीप्ल कंडीशन को ट्रू या फाल्स टेस्टिंग के आधार पर प्रोग्राम कोड के विभिन्न ब्लॉक को एक्सेक्यूट कर सकते हैं। जहा इफ स्टेटमेंट सिंगल…

Comments Off on Conditional statements (if, elif, else) python In Hindi

Operators (arithmetic, comparison, logical) in python

Operators (arithmetic, comparison, logical) in python Operators are some special symbols or reserved keywords in Python programming language. Python operators are used to perform programming operations on program variables and variable values. Python program operators can be divided into many types. Some of the popular operators include arithmetic operators, comparison (relational) operators, logical operators, assignment…

Comments Off on Operators (arithmetic, comparison, logical) in python

Variables and data types (integers floats strings booleans) in python

Variables and data types (integers, floats, strings, booleans) Variables in Python programming, like other programming languages, are a symbolic program data storage container that stores the relevant program variable values ​​in the computer's secondary memory. Program variables declared in Python allow the programmer to store various variable values ​​declared in the program and manipulate data…

Comments Off on Variables and data types (integers floats strings booleans) in python

Print statement and input from user

Print statement and input from user If you want to see the result of declaring variable values ​​in Python program and take input values ​​directly from user in the program. Then here is a simple Python program which shows the example of printing a Python program statement by programmer and taking input from programmer/user in…

Comments Off on Print statement and input from user

Print statement and input from user In Hindi

Print statement and input from user In Hindi यदि आप पाइथन प्रोग्राम में डिक्लेअर वेरिएबल वैल्यूज के रिजल्ट और डायरेक्ट यूजर से प्रोग्राम में इनपुट वैल्यूज लेना चाहे। तो यहाँ एक सरल पायथन प्रोग्राम दिया गया है. जो प्रोग्रामर द्वारा एक पाइथन प्रोग्राम स्टेटमेंट को प्रिंट करने और प्रोग्रामर/यूजर से पाइथन प्रोग्राम में इनपुट लेने…

Comments Off on Print statement and input from user In Hindi

Operators (arithmetic, comparison, logical) python in Hindi

Operators (arithmetic, comparison, logical) python in Hindi पायथन प्रोग्रामिंग लैंग्वेज में ऑपरेटर कुछ स्पेशल सिंबल या रिजर्व्ड कीवर्ड होते हैं. पाइथन ऑपरेटर का उपयोग प्रोग्राम वेरिएबल और वेरिएबल वैल्यूज पर प्रोग्रामिंग ऑपरेशन संचालित करने में किया जाता है। पाइथन प्रोग्राम ऑपरेटर को कई प्रकारों में विभाजित किया जा सकता है. जिसमे कुछ पॉपुलर ऑपरेटर में…

Comments Off on Operators (arithmetic, comparison, logical) python in Hindi

Variables and data types (integers floats strings booleans) In Hindi

Variables and data types (integers, floats, strings, booleans) In Hindi वेरिएबल अन्य प्रोग्रामिंग लैंग्वेज की तरह पाइथन प्रोग्रामिंग में एक एक सिंबॉलिक प्रोग्राम डाटा स्टोरेज कंटेनर की तरह है. जो संबधित प्रोग्राम वेरिएबल वैल्यू को कंप्यूटर  सेकेंडरी मेमोरी में स्टोर करता है। पाइथन प्रोग्राम में डिक्लेअर प्रोग्राम वेरिएबल प्रोग्रामर को प्रोग्राम में डिक्लेअर विभिन्न वेरिएबल…

Comments Off on Variables and data types (integers floats strings booleans) In Hindi

Command-line arguments in c

Command-line arguments in c Command-line arguments in C language give you access to pass arguments/parameters when executing the program from command line/command prompt. These program arguments/parameters provide program input data or options, making it more flexible and customizable for various programming purposes. Accessing command-line arguments in C. man function in C - It can accept…

Comments Off on Command-line arguments in c

Bitwise operators in c

Bitwise operators in c Bitwise operators in C language manipulate individual bits within an integer type in a storage location. Bitwise operators are commonly used in low-level computer programming, such as low-level computer programming, systems programming, embedded systems, computer hardware, and other applications. Types of Bitwise Operators in C Language. AND (&) OR (|) XOR…

Comments Off on Bitwise operators in c