Nuttige ingebouwde functies voor dictionaries Flashcards

1
Q

a_dict[‘frank’] = 8

A

Voeg een item toe of werk een bestaand item bij

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

Counter([…])

A

Tel de frequentie van woorden in een lijst

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

my_dictionary.clear()

A

Verwijder alle items uit een dictionary

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

my_dictionary.copy()

A

Maak een kopie van de dictionary

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

student_grades.items()

A

Geef alle items (key-value paren) weer

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

for key, value in …

A

Itereer door de dictionary en print key en value

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

my_dictionary.setdefault()

A

Geef de waarde van een sleutel, voeg toe als niet aanwezig

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

student_grades.keys()

A

Geef alle sleutels van de dictionary weer

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

my_dictionary.popitem()

A

Verwijder het laatst toegevoegde item

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

my_dictionary.pop()

A

Verwijder een item op basis van de sleutel

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

my_dictionary.update()

A

Werk items bij of voeg ze toe aan de dictionary

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