Dictionary Flashcards

every topic from dictionary ad all functions

1
Q

What is a dictionary in Python?

A

A dictionary is a sequence data type.

It is mutable, meaning it can be changed after creation.

It is denoted by curly braces {}.

Dictionaries store data in key-value pairs.

Keys in a dictionary are unique.

Example: D = {1: 10, 2: 20, 3: 30}

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

How do you access values in a dictionary?

A

Use the syntax: Dict_Name[key_name]

D = {1: 10, 2: 20, 3: 30}
D[1] # Output: 10
D[2] # Output: 20

If a key is duplicated, the last assigned value is stored
D = {1: 10, 2: 20, 3: 30, 1: 40}
D # Output: {1: 40, 2: 20, 3: 30}

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

How do you update a value in a dictionary?

A

Use the syntax: Dict_Name[Key_Name] = New_Value

D = {‘A’: 10, ‘B’: 20, ‘C’: 30}
D[‘A’] = 15 # Update value of key ‘A’
D # Output: {‘A’: 15, ‘B’: 20, ‘C’: 30}

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

How do you add a new item to a dictionary?

A

Use the syntax: Dict_Name[New_Key_Name] = Value

D = {1: 10, 2: 20, 3: 30}
D[4] = 40 # Add new key-value pair
D # Output: {1: 10, 2: 20, 3: 30, 4: 40}

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

How do you loop through a dictionary?

A

Use keys(), values(), or items() methods.

keys(): Returns the keys of the dictionary.

D = {1: 10, 2: 20, 3: 30}
for key in D.keys():
print(key) # Output: 1, 2, 3

values(): Returns the values of the dictionary.

for value in D.values():
print(value) # Output: 10, 20, 30

items(): Returns key-value pairs as tuples.

for item in D.items():
print(item) # Output: (1, 10), (2, 20), (3, 30)

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

What does the len() function do in a dictionary?

A

Returns the number of keys in the dictionary

D = {1: 10, 2: 20, 3: 30}
len(D) # Output: 3

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

What does the dict() function do?

A

Used to create a dictionary.

D = dict(name=”Shiva”, age=26, country=”India”)
D # Output: {‘name’: ‘S

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

What does the get() method do?

A

Returns the value of the specified key.

D = {1: 10, 2: 20, 3: 30}
D.get(1) # Output: 10
D.get(3) # Output: 30

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

What does the update() method do?

A

Inserts new key-value pairs or merges two dictionaries.

D = {1: 10, 2: 20, 3: 30}
D.update({4: 40}) # Add new key-value pair
D

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

What does the del keyword do?

A

Used to delete an element from the dictionary using the key.

D = {1: 10, 2: 20, 3: 30}
del D[1] # Delete key 1
D # Output: {2: 20,

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

What does the clear() method do?

A

Deletes all elements from the dictionary but retains the structure

D = {1: 10, 2: 20, 3: 30}
D.clear()
D # Output: {}

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

What does the pop() method do?

A

Deletes a specific element and returns its value.

D = {1: 10, 2: 20, 3: 30}
D.pop(2) # Output: 20
D # Output: {1: 10, 3:

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

What does the popitem() method do?

A

Deletes the last element and returns it as a key-value pair.

D = {1: 10, 2: 20, 3: 30}
D.popitem() # Output: (3, 30)
D # Output: {1

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

What does the setdefault() method do?

A

Returns the value of a key. If the key doesn’t exist, it adds the key with a specified value.

D = {1: 10, 2: 20, 3: 30}
D.setdefault(4, 40) # Output: 40
D # Output:

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

What does the max() function do?

A

Returns the largest key in the dictionary (based on ASCII values for strings).

D = {1: 10, 2: 20, 3: 30}
max(D) # Output: 3

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

What does the min() function do?

A

Returns the smallest key in the dictionary (based on ASCII values for strings)

D = {1: 10, 2: 20, 3: 30}
min(D) # Output: 1

17
Q

What does the fromkeys() method do?

A

Creates a dictionary with multiple keys having the same value.

K = {‘A’, ‘B’, ‘C’}
V = 10
D = dict.fromkeys(K, V)
D # Output: {‘A’: 10

18
Q

What does the copy() method do?

A

Returns a copy of the dictionary

D = {1: 10, 2: 20}
D1 = D.copy()
D1 # Output: {1: 10, 2: 20}

19
Q

What does the sorted() function do?

A

Sorts the keys, values, or items of the dictionary.

D = {1: 10, 4: 40, 3: 30, 2: 20}
sorted(D) # Output: [1, 2, 3, 4]
sorte

20
Q

Write a program to count the frequency of characters in a string using a dictionary.

A

S = input(“Enter a string: “)
D = {}
for c in S:
if c in D:
D[c] += 1
else:
D[c] = 1
print(“Frequency of Characters:”, D)