Python namedtuple is an immutable container type, whose values can be accessed with indexes and named attributes. It has functionality like tuples with additional features. A named tuple is created ...
Definition: It provides a way to create simple, lightweight ==immutable== data structures similar to a class, but without the overhead of defining a full class. "NamedTuple"?: Named: It resembles ...