Class method that makes a new instance from an existing sequence or iterable.
classmethod somenamedtuple._make(iterable)
>>> t = [11, 22] >>> Point._make(t) Point(x=11, y=22)