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,list,dictionary
authors: maciv
cover: blog_images/mask-quiet.jpg
excerpt: Understand Python's named tuples and start using them in your projects today.
firstSeen: 2021-01-14T11:00:00+02:00
lastUpdated: 2021-06-12T19:30:41+03:00
---
Python's named tuples are a very simple yet interesting feature that can make a developer's life easier. They are part of the `collections` module and act very similar to regular tuples, the main difference being that values stored in a named tuple can be accessed using field names instead of indexes.