Newbie Bite 43. Named Tuple
Login and get codingIn this Bite, you'll learn about the
namedtupleobject. These objects are similar to a regular tuple; However, while elements in a regular tuple are accessed by index, elements in anamedtuplecan be accessed by an attribute through dot notation, making your code more readable.