From d7d84eb5606eeaf92fdfd0deabe5fdade1c0a53d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=A0orn?= Date: Wed, 20 Jan 2021 17:21:22 +0100 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 555d058..7a4b754 100644 --- a/README.md +++ b/README.md @@ -144,7 +144,7 @@ Tuple **Tuple is an immutable and hashable list.** ```python = () - = (, ) + = (,) = (, [, ...]) ``` diff --git a/index.html b/index.html index d88fccf..4b888c4 100644 --- a/index.html +++ b/index.html @@ -335,7 +335,7 @@ Counter({'blue': 3

#Tuple

Tuple is an immutable and hashable list.

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