Bake dates into articles

This commit is contained in:
Isabelle Viktoria Maciohsek
2021-06-13 19:52:48 +03:00
parent 65528cce0d
commit 9482b077ec
123 changed files with 246 additions and 0 deletions

View File

@@ -5,6 +5,8 @@ tags: python,dictionary
authors: maciv
cover: blog_images/fruit-feast.jpg
excerpt: Learn the difference between two common ways to access values in Python dictionaries and level up your code today.
firstSeen: 2021-01-07T11:00:00+02:00
lastUpdated: 2021-06-12T19:30:41+03:00
---
A common debate among Python developers seems to stem from the retrieval of dictionary values, which can be accomplished using either `dict[key]` or `dict.get(key)`.