Dictionary Flashcards

1
Q

Printing key and values

A
dict = {'first' : 'sunday', 'second' :'monday', 'third' : 'tuesday'} 

dict.keys() method will print only the keys of the dictionary

for key in dict.keys():
    print(key)

dict.values() method will print only the values of the corressponding keys of the

dic for value in dict.values():
print(value)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Update key value

A

dict = {'first' : 'sunday', 'second' : 'monday', 'third' : 'tuesday'}

for item in dict.items():
print(item) dict['fourth'] = 'wednesday'
for item in dict.items():
print(item)

Output:
(‘first’, ‘sunday’) (‘second’, ‘monday’) (‘third’, ‘tuesday’) (‘first’, ‘sunday’) (‘second’, ‘monday’) (‘third’, ‘tuesday’) (‘fourth’, ‘wednesday’)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Delete key-value pair from dictionary

A
 dict = {'first' : 'sunday', 'second' : 'monday', 'third' : 'tuesday'} 
 for item in dict.items():
print(item) del dict['third']

removed_item = pop(item, “default message if not found”);

use del if you just want to remove an item and don’t need the removed value, and use pop() if you need the removed value or want to safely handle cases where the key might not exist in the dictionary.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Merging 2 dictionaries

A
 dict1 = {'first' : 'sunday', 'second' : 'monday', 'third' : 'tuesday'} 
dict2 = {1: 3, 2: 4, 3: 5}
dict1.update(dict2)
print(dict1)

Output:
{‘first’: ‘sunday’, ‘second’: ‘monday’, ‘third’: ‘tuesday’, 1: 3, 2: 4, 3: 5}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Dictionary

A

Mutable, Unordered data structure with key, value pair
names = {"non": "Nonna", "al": "Alan"}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Keys

A
  1. Unique
  2. Can Be of Different Types: you can have a dictionary where some keys are strings, others are integers, and others are tuples.

3.Immutable: strings, numbers, or tuples.

4.Consistency is Key: recomended to keep them consistent and of the same type for readability and maintainability of your code.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Check if key exists

A
if 'key1' in my_dict:
    print("Key1 exists")
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

get(key, default=None):

A

Returns the value for the specified key if the key is in the dictionary. Otherwise, it returns None (or a specified default value).

print(my_dict.get('key1', 'Not Found'))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Items

A
for key, value in my_dict.items():
    print(key, value)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Clear

A

my_dict.clear()
removes all items from dict

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Update

A

Updates the dictionary with the key-value pairs from other, overwriting existing keys.
~~~
my_dict.update({‘key1’: ‘updated’, ‘key4’: ‘new value4’})
~~~

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

pop(key, default)

A

Removes the specified key and returns the corresponding value. If the key is not found, default is returned if provided, otherwise a KeyError is raised.

print(my_dict.pop('key3', 'Not Found'))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly