Skip to content

Latest commit

 

History

History

lecture-06

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Lecture-06: Dictionaries

এই লেকচার এ আমরা পাইথনের আরও একটি নতুন ডেটা টাইপ ডিকশনারি নিয়ে আলোচনা করব ।

Lecture Links

আলোচনার বিযয়গুলো নিম্নে উল্লেখ করা হলোঃ

  • A Simple Dictionary
  • Working with Dictionaries
    • Accessing Values in a Dictionary
    • Adding New Key-Value Pairs
    • Starting with an Empty Dictionary
    • Modifying Values in a Dictionary
    • Removing Key-Value Pairs
    • A Dictionary of Similar Objects
    • Using get() to Access Values
  • Looping Through a Dictionary
    • Looping Through All Key-Value Pairs
    • Looping Through All the Keys in a Dictionary
    • Looping Through a Dictionary’s Keys in a Particular Order
    • Looping Through All Values in a Dictionary
  • Nesting
    • A List of Dictionaries
    • A List in a Dictionary
    • A Dictionary in a Dictionary