From 48df268fa9ad43847ba70327419fa53a1526509b Mon Sep 17 00:00:00 2001 From: Suliman Sagindykov <115887342+SulimanSagindykov@users.noreply.github.com> Date: Fri, 21 Jul 2023 16:19:24 +0500 Subject: [PATCH] Update ex2_3.md unnecessary space after a tab (from 5 to 4 spaces) --- Exercises/ex2_3.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Exercises/ex2_3.md b/Exercises/ex2_3.md index 6ca5eea..aa5d74b 100644 --- a/Exercises/ex2_3.md +++ b/Exercises/ex2_3.md @@ -220,7 +220,7 @@ Watch what happens if you do the for-loop again: ```python >>> for n in squares: - print(n) + print(n) >>> ``` @@ -291,7 +291,7 @@ False >>> ``` -Here is an subtle use of a generator expression in making comma +Here is a subtle use of a generator expression in making comma separated values: ```python