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

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

दोस्तों Python Tutorial में पहले हम पढ चूके यह की Set क्या है और Python Collection को आग पढते हुए आज हम देखेग की Python Dictionary  क्या है ( What is Python Dictionary in Hindi ) तो चलाइए इस विस्तार में समझते हैं 


INTRODUCTION 


Dictionary एक unordered,changeable और indexed Collection हैं।

यह hashtable की तरह होती हैं जिसमे key और values के pair होते हैं जो colon(:) से separated होते हैं इसमें keys unique होती हैं यानि की keys duplicate नहीं होनी चाहिए लेकिन value duplicate हो सकती हैं। यह एक mutable data type होती है और यदि इसमे key व value ना हो तो इसे empty dictionary कहते हैं और curly braces ({ }) से denote करते हैं। 


CREATION 

 

Dictionary को create करने के लिए curly braces ({ }) का use किया जाता है इसमें key और value को colon (:) से separate किया जाता है तथा key और value के pair को comma से separate किया जाता है। 

Syntax- dic = {"key" : "value"}

Ex- dic = {"name1" : "Code" , "name2" : "Dept"}


ACCESSING 


जिस प्रकार list और tuple में element को access करने के लिए index number का use किया जाता है ठीक उससी प्रकार इसमे element को access करने के लिए key का use किया जाता है हमें जिस भी value को access करना होता है उसकी key को हम square bracket ([ ]) के अन्दर लिख देते हैं। 

Example -


Python dictionary, dictionary, python collection


Output - 

Python dictionary, dictionary, python collection


METHODS


clear() - सभी elements को remove करता है 

copy() - dictionary की copy return करता है 

fromkeys() - यह किसी specific key और value के साथ dictionary को return करता है 

get() - किसी specific key की value को return करता है 

items() - यह key value के pair की list return करता है 

keys() - यह key की list return करता है 

pop() - यह दिए गए key की value को remove करता है 

popitem() - last element को remove करता है 

update() - dictionary को update करता है 

values() - यह key की list return करता है



आज हमने क्या सीखा ?

दोस्तो आज हमने Python Dictionary क्या है ( What is Python Dictionary in Hindi ) के बारे मे सीखा मुझे आश है की आपको यह समझे मे आ गया होगा।

मेरी हमेशा से यह कोशिश रहती है की मै सभी लोगो को computer व coding से related सारे जानकारी  आसानी से समझा सुक। यदि आपको कुछ इस post से कुछ doubt हो या फिर कोई अन्य जानकारी जाननी हो तो आप comment कर हमसे पूछ सकते है।


यदि आपको हमारे द्वारा दी गई जानकारी पसंद आए तो आप हमारे blog को अपने friends, relatives आदि को share करे ताकि सभी लोगे इसका लाभ ले सके।

आपको यह post कैसी लगी comment करे बताइए ताकि आपके द्वारा दी गए सुधार व विचार से हम अपने content मे सुधार कर सके। और कृपया इस को post social networks पर जरूर share करे।

धन्यवाद






टिप्पणियाँ

एक टिप्पणी भेजें

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

Python control statements क्या है ( What is Python control statement in hindi )

Python tutorial में आज हम जानगे की Python control statements क्या है ( What is Python control statement in hindi ) किसी भी programming language में Control statement बहुत ही महत्वपूर्ण होता इसके बिना programming नहीं की जा सकती है आइए इस विस्तार में समझते हैं की Python control statements क्या है ( What is Python control statement in hindi )  INTRODUCTION   Program में condition के अनुसार statement को control करने के लिए control statement का उपयोग किया जाता है। इस हमे decision  making statement भी कहते हैं 1) if Statement- if statement में किसी condition को check किया जाता है यदि condition true होती हैं तो if block मे लिखी statement execute हो जाते हैं और यदि condition false है तो if के block में लिख code को ignore कर दिया जाता है। Syntax- if condition:     Statements Example- a = 10 b = 20 if b > a:   print("b is greater than a") Output- b is greater than a 2) if-else- if-else statement भी if की तरह होता है difference बस इतना है की इसम...

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 अपने पास रखता...

Python Indentation क्या है ( What is Python Indentation in hindi )

  दोस्तो आज हमे जानने की Python Indentation क्या है ( What is Python Indentation in hindi ) और साथ ही हम यह भी देखें की इसे कैसे Create व उपयोग करते हैं। INTRODUCTION Python में indentation को काफी महत्व दिया गया python में indentation का use function class, loop और control statements के लिए किया जाता है python में curl bracket की जगह indentation का use किया जाता है। Program में एक block बहुत सारे statements का Collection होता है। एक block को विशिष्ट उद्देश्य के लिए बनाया जाता है। आधिकाश programming language जैसे C, C++,Java आदि code के block को defineकरने के लिए curl bracket ({ }) का प्रयोग करते हैं लेकिन Python में code के block को indentation से define किया जाता है। सामान्य रूप से Indentation एक whitespace होता है जिसका use एक block को दूसरे Block से अलग करने के लिए किया जाता है। एक code Block (function, loop) indentation से start और श un-indentation पर end होता है। किसी भी program मे कितने भी indentation हो सकते है यह पूरे तरह programmers पर depend होता है। यह बहुत ही महत्वप...