In IPython version 9.4.0, saving a Python Named Tuple type to a variable, then running the 'whos' command, causes an exception, because apparently the Named Tuple type variable has a __len__ attribute ...
Named tuples are like tuples in that they are immutable. However, unlike plain-vanilla tuples, named tuples allow us to give names to the elements they contain. These elements are called fields. By ...