Dictionaries

0
7Кб

Dictionaries are another fundamental data structure in Python used for storing collections of items. Unlike lists which use numerical indexes for access, dictionaries use key-value pairs. This makes them ideal for situations where you need to associate data with names or unique identifiers.

Here's a breakdown of dictionaries in Python:

1. Creating Dictionaries:

  • Dictionaries are created using curly braces {} with key-value pairs separated by colons ::

Python
# Simple dictionary
person = {"name": "Alice", "age": 30, "city": "New York"}

# Dictionary with mixed data types
data = {1: "One", 2.5: "Two point five", True: "Boolean value"}

  • Keys must be immutable (like strings, numbers, or tuples). Values can be of any data type.

2. Accessing Elements:

  • You can access elements using their keys within square brackets:

Python
name = person["name"]  # name will be "Alice"

  • Trying to access a non-existent key will result in a KeyError. You can use the get() method to handle missing keys gracefully:

Python
occupation = person.get("occupation", "Unemployed")  # Returns "Unemployed" if "occupation" key is missing

3. Modifying Dictionaries:

  • Dictionaries are mutable, you can change their contents after creation.
  • Assign a new value to an existing key to modify it:

Python
person["age"] = 31  # Updates the age of the person

  • Add new key-value pairs using the assignment operator:

Python
person["occupation"] = "Software Engineer"

  • Remove key-value pairs using the del keyword:

Python
del person["city"]  # Removes the "city" key-value pair

4. Common Dictionary Methods:

  • keys(): Returns a view of all keys in the dictionary.
  • values(): Returns a view of all values in the dictionary.
  • items(): Returns a view of all key-value pairs as tuples.
  • in: Checks if a specific key exists in the dictionary.

5. Looping through Dictionaries:

  • You can iterate over the keys or key-value pairs of a dictionary:

Python
# Looping through keys
for key in person:
  print(key, person[key])

# Looping through key-value pairs
for key, value in person.items():
  print(f"{key}: {value}")

Advantages of Dictionaries:

  • Fast lookups: Accessing elements by key is very efficient (average time complexity of O(1)).
  • Flexible keys: Keys can be any immutable data type, allowing for meaningful names or identifiers.
  • Unordered: The order of elements in a dictionary is not guaranteed, which is sometimes desirable.

When to Use Dictionaries:

  • When you need to associate data with unique labels or identifiers.
  • When the order of elements is not important.
  • For representing real-world entities with attributes (like person, product, etc.).

I hope this explanation clarifies dictionaries in Python. Feel free to ask if you'd like to explore specific examples or use cases for dictionaries!

Поиск
Категории
Больше
Technology
Web Design Tools and Technologies
Web Design Tools and Technologies Web design has evolved dramatically over the past few decades,...
От Olaim 2024-07-26 17:47:49 0 13Кб
Business
Small Businesses: The Backbone of the Economy and Pillars of Community Growth
In the intricate fabric of our global economy, small businesses are the threads that hold it...
От Olaim 2024-08-03 15:15:09 0 6Кб
Technology
Role of Business Information Systems (BIS) in Various Business Functions
Business Information Systems (BIS) play a crucial role in enhancing the efficiency and...
От Business Information Systems (BIS) Course 2024-08-01 17:02:21 0 7Кб
Computer Programming
Element-specific attributes (alt for images, href for links)
While global attributes can be applied to any HTML element, some attributes are specific to...
От HTML PROGRAMMING LANGUAGE 2024-08-15 01:47:04 0 5Кб
Computer Programming
Basic structure of an HTML document
An HTML document is composed of two main sections: the head and the body. The <head>...
От HTML PROGRAMMING LANGUAGE 2024-08-13 03:25:34 0 5Кб