From d06406302154d4f035a408577ef91e1a64a09a79 Mon Sep 17 00:00:00 2001 From: Noa Sarid <83418206+noaiz@users.noreply.github.com> Date: Fri, 5 Apr 2024 02:28:04 +0300 Subject: [PATCH] fix: change variable name to not be python's built-in function name (#69) --- content/week06/2_Functional_Behavior.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/week06/2_Functional_Behavior.ipynb b/content/week06/2_Functional_Behavior.ipynb index d09317f..7a4dc99 100644 --- a/content/week06/2_Functional_Behavior.ipynb +++ b/content/week06/2_Functional_Behavior.ipynb @@ -325,7 +325,7 @@ "metadata": {}, "source": [ "

\n", - " כתבו generator בשם apply שמקבל כפרמטר ראשון פונקציה (func), וכפרמטר שני iterable (iter).
\n", + " כתבו generator בשם apply שמקבל כפרמטר ראשון פונקציה (func), וכפרמטר שני iterable (iterable).
\n", " עבור כל איבר ב־iterable, ה־generator יניב את האיבר אחרי שהופעלה עליו הפונקציה func, דהיינו – func(item).
\n", "

" ]