Important Notice:

Course Content
Dictionary in Python (Chapter-9) M3-R5
About Lesson

Dictionary:-

                      Python में Dictionary उन 4 built in data types ( list , tuple , set , dictionary ) में से एक है जिसका use  data collection को store करने के लिए किया जाता है या कह सकते हैं multiple value store करने के लिए किया जाता है Python में dictionary का use key : value type का data store करने के लिए किया जाता है।

 

Properties of dictionary:-

  1. dictionary में element key और value के pair में होते हैं।

  2. Dictionary में key और value को colon(:) से separate किया जाता है जबकि key और value की pair को comma (,) से separate किया जाता है।

  3. Dictionary के द्वारा mutable object create करते हैं

  4. Dictionary key और value में heterogeneous object को allow करता है।

  5. Dictionary में duplicate key allow नही हैं। लेकिन duplicate value allow है।

  6. Dictionary से value को access करने के लिए उस value के key का प्रयोग करते हैं।

  7. Dictionary object create करने के लिए { } bracket का use करते हैं।

 

Dictionary:-

                      Dictionary in Python is one of those 4 built in data types (list, tuple, set, dictionary) which is used to store data collection or can be said to store multiple values. Dictionary in Python It is used to store data of key: value type.

 

Properties of dictionary:-

  1. Elements in dictionary are in pairs of key and value.

  2. In dictionary, key and value are separated by colon (:) while the pair of key and value is separated by comma (,).

  3. Create mutable object through dictionary

  4. Dictionary allows heterogeneous objects in key and value.

  5. Duplicate keys are not allowed in Dictionary. But duplicate value is allowed.

  6. To access a value from the dictionary, the key of that value is used.

  7. { } bracket is used to create dictionary object.

error: Content is protected !!