Is it possible to add a documentation string to a namedtuple in an easy manner?
I tried
from collections import namedtuple Point = namedtuple(\"Poin
In Python 3.6+ you can use:
class Point(NamedTuple): """ A point in 2D space """ x: float y: float