“Python Defaultdict (lista)” Kod odpowiedzi

Python Defaultdict (lista)

>>> s = [('yellow', 1), ('blue', 2), ('yellow', 3), ('blue', 4), ('red', 1)]
>>> d = defaultdict(list)
>>> for k, v in s:
...     d[k].append(v)
...
>>> d.items()
[('blue', [2, 4]), ('red', [1]), ('yellow', [1, 3])]
Unusual Unicorn

.Defaultdict

>>> from collections import defaultdict
>>> food_list = 'spam spam spam spam spam spam eggs spam'.split()
>>> food_count = defaultdict(int) # default value of int is 0
>>> for food in food_list:
...     food_count[food] += 1 # increment element's value by 1
...
defaultdict(<type 'int'>, {'eggs': 1, 'spam': 7})
>>>
Difficult Duck

Odpowiedzi podobne do “Python Defaultdict (lista)”

Pytania podobne do “Python Defaultdict (lista)”

Więcej pokrewnych odpowiedzi na “Python Defaultdict (lista)” w Python

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu