सीधे मुख्य सामग्री पर जाएं

Disclaimer

Disclaimer for CODE DEPT

If you require any more information or have any questions about our site's disclaimer, please feel free to contact us by email at fk512245@gamil.com. Our Disclaimer was generated with the help of the Free Disclaimer Generator.

Disclaimers for Code Dept

All the information on this website - https://codedept.blogspot.com - is published in good faith and for general information purpose only. Code Dept does not make any warranties about the completeness, reliability and accuracy of this information. Any action you take upon the information you find on this website (Code Dept), is strictly at your own risk. Code Dept will not be liable for any losses and/or damages in connection with the use of our website.

From our website, you can visit other websites by following hyperlinks to such external sites. While we strive to provide only quality links to useful and ethical websites, we have no control over the content and nature of these sites. These links to other websites do not imply a recommendation for all the content found on these sites. Site owners and content may change without notice and may occur before we have the opportunity to remove a link which may have gone 'bad'.

Please be also aware that when you leave our website, other sites may have different privacy policies and terms which are beyond our control. Please be sure to check the Privacy Policies of these sites as well as their "Terms of Service" before engaging in any business or uploading any information.

Consent

By using our website, you hereby consent to our disclaimer and agree to its terms.

Update

Should we update, amend or make any changes to this document, those changes will be prominently posted here.

टिप्पणियाँ

इस ब्लॉग से लोकप्रिय पोस्ट

Python Collection क्या है ( What is Python Collection in Hindi )

  दोस्तों Python Tutorial में आज हम Python Collection क्या है ( What is Python Collection in Hindi ) देखेग। तो चलाइए इस post मे जानते है  INTRODUCTION   Python में collection एक container की तरह होते हैं जिसका प्रयोग data को store करने के लिए किया जाता है। Collection के द्वारा हम built-in collection containers की functionalities को improve करते हैं। सबसे पहले python collection को python 2.4 version में लाया गया था। Ex- List, tuple, set , dictionary  Collection में कुछ Specialized data structures use होते हैं जो निम्न हैं  1) OrderedDict - Ordereddict का use dict को उससी ordered में return करने के लिए किया जाता है जिसमें की उससे insert किया है  2) DefaultDict - DefaultDict का use duplicate key के साथ एक dict बनाने के लिए किया जाता है। 3) Counters - counter dictionary की subclass हैं। counter का use hash table element को count करने के लिए किया जाता है। इसका उपयोग किसी particular key के collection में entered की गए item को count करने के लिए किया जाता है  4) named tuple - named tuple

Python naming convention क्या है ( Python naming convention in Hindi )

दोस्तो आज हमे जानने की Python naming convention क्या है ( Python naming convention in Hindi ) बिना इसके हमे programming नही कर सकते है यह programming का बहुत ही महत्वपूर्ण अंग होता हैं तो चलाए इस विस्तार में समझते हैं। Introduction   किसी भी programming language में naming convention बहुत ही महत्पूर्ण व उपयोगी होता है। Name convention यह निधारित करता है की किसी class, variable, function आदि को किस से प्रकार declare करना है। आसान शब्दों में यह rules का set होता है जिसमें यह निर्धारित किया जाता है कि variables का name किस प्रकार या कैसे रखा जाए। Rule for creating variables/class/function Variable name हमेश uppercase में होना चाहिए।  Identifier  lowercase ,uppercase (A to 73 digit, underscore का (combination) हो सकता है।  कोई भी identifier digit से शुरू नहीं होना चाहिए।  Keywords या Reserved word का use identifier के रूप में नहीं कर सकते  किसी dentifier के बीच में (Space) नहीं होना चाहिए  Identifier की length की कोई सीमा निर्धारित नहीं की गई है। Python case sensitive programming langua

Python environment variable क्या है? ( What is Python environment variables in hindi )

दोस्तों Python के tutorial मे आगे बढ़ते हुए आज हमे सीखे की Python environment variable क्या है? ( What is Python environment variables in hindi ) तो चलाइए इस विस्तार में समझते हैं  Introduction   Environment variable एक dynamic object होता है जिसमे editable value होती है इसका use computer मे एक या एक से ज्यादा software करते हैं environment variable का use program को यह जानने में help करता है की file को किस directory मे store किया जाए। temporary file को कहा store किया जाता file को कहाँ से access किया जाए आदि। Different Environment variable  PYTHONPATH- यह PATH के समान ही होता है। यह Interpreter को बताता है की program में import की गयी module file को कहाँ locate करना है। PYTHONPATH कभी-कभी Python installer द्वारा भी प्रस्तुत किया जाता है।  PYTHONSTARTUP-  यह उस file के path को store करता है जो Python Source कोड को initialize करती है। जब भी interpreter start होता है, तब यह execute होता है। यह PYTHONPATH को modify या utilities को लोड करने का command अपने पास रखता है। PYTHONCASEOK- यह im