From ee21b33e3fe80ee77db49e47f4baffa4502eeec4 Mon Sep 17 00:00:00 2001 From: bid0uille <48789037+bid0uille@users.noreply.github.com> Date: Thu, 2 Jul 2020 16:21:19 +0200 Subject: [PATCH] Fix missing word Word 'number' missing in 02.04 part. --- Notes/02_Working_with_data/04_Sequences.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Notes/02_Working_with_data/04_Sequences.md b/Notes/02_Working_with_data/04_Sequences.md index d74f352b9..51e2df4bf 100644 --- a/Notes/02_Working_with_data/04_Sequences.md +++ b/Notes/02_Working_with_data/04_Sequences.md @@ -242,7 +242,7 @@ for x, y in points: ``` When using multiple variables, each tuple is *unpacked* into a set of iteration variables. -The number of variables must match the of items in each tuple. +The number of variables must match the number of items in each tuple. ### zip() function