Python defaultdict - Collections module : Python programming for beginners

Published: 29 September 2022
on channel: Brendan Callaghan
45
2

Python defaultdict - Collections module : Python programming for beginners

from collections import defaultdict

pets_counter = {"dogs": 1, "cats": 1}
print(pets_counter)
print(pets_counter["dogs"])
print(pets_counter["birds"])
print(pets_counter.get("birds"))
print(pets_counter.setdefault("birds",1))
print(pets_counter)
print(pets_counter.setdefault("dogs",2))
print(pets_counter)

print('*' * 100)

pets_counter = defaultdict(int)
print(pets_counter)
pets_counter["dogs"]
print(pets_counter)
pets_counter["cats"] = "bob"
print(pets_counter)

print('*' * 100)

pets = [
("dog", "Affenpinscher"),
("dog", "Terrier"),
("dog", "Boxer"),
("cat", "Abyssinian"),
("cat", "Birman"),
]

group = defaultdict(list)
print(group)

for name, breed in pets:
group[name].append(breed)

for name, breed in group.items():
print(name, '--', breed)

group["birds"]
print(group)

group["dog"].append("bulldog")
print(group)


On this page of the site you can watch the video online Python defaultdict - Collections module : Python programming for beginners with a duration of hours minute second in good quality, which was uploaded by the user Brendan Callaghan 29 September 2022, share the link with friends and acquaintances, this video has already been watched 45 times on youtube and it was liked by 2 viewers. Enjoy your viewing!