pandas.api.types.
is_named_tuple
Check if the object is a named tuple.
Whether obj is a named tuple.
Examples
>>> from collections import namedtuple >>> Point = namedtuple("Point", ["x", "y"]) >>> p = Point(1, 2) >>> >>> is_named_tuple(p) True >>> is_named_tuple((1, 2)) False