✏️ Explanatory Question

Dictionary Data Type কী? উদাহরণসহ ব্যাখ্যা করো।

👁 0 Views
📘 Detailed Answer
🟢 Easy
0
Total Views
10
Related Qs
0%
Progress
💡

Answer with Explanation

Dictionary হলো key-value pair ভিত্তিক mapping data type।

Example:

student = {
    "name": "Rumman",
    "age": 25
}
----------------------------------------------------

Features:

  • Key-value pair store করে
  • Mutable data type
  • Fast data access
----------------------------------------------------

Access Example:

print(student["name"])
----------------------------------------------------

Conclusion:

Dictionary structured data efficiently store করতে ব্যবহৃত হয়।