diff --git a/README.md b/README.md index c0e9187..0298b5a 100644 --- a/README.md +++ b/README.md @@ -529,6 +529,7 @@ from functools import reduce ```python from collections import namedtuple Point = namedtuple('Point', 'x y') +point = Point(0, 0) from enum import Enum Direction = Enum('Direction', 'n e s w')