From e9925a5cda8ba1ef78f3d34bf11288ae0ae60926 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Sat, 7 Sep 2019 18:52:38 +0200 Subject: [PATCH] Tuple --- README.md | 2 +- index.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index bbc123b..69c2166 100644 --- a/README.md +++ b/README.md @@ -143,7 +143,7 @@ Tuple ```python = () = (, ) - = (, , ...) + = (, [, ...]) ``` ### Named Tuple diff --git a/index.html b/index.html index f68fc36..4ed0d9d 100644 --- a/index.html +++ b/index.html @@ -309,7 +309,7 @@ Counter({'blue': 3

#Tuple

Tuple is an immutable and hashable list.

<tuple> = ()
 <tuple> = (<el>, )
-<tuple> = (<el_1>, <el_2>, ...)
+<tuple> = (<el_1>, <el_2> [, ...])