From 430ec62d7752fdbd2710d22b1b79e46684433d1f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 27 Feb 2019 16:26:34 +0100 Subject: [PATCH] Named tuple --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index b24ff9a..4db6f35 100644 --- a/README.md +++ b/README.md @@ -152,7 +152,7 @@ for i, el in enumerate( [, i_start]): Named Tuple ----------- * **Tuple is an immutable and hashable list.** -* **Named tuple is a subclass of tuple with named elements.** +* **Named tuple is its subclass with named elements.** ```python >>> from collections import namedtuple