File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
02.Python_functions/1.Python_functions_scripts Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -77,8 +77,8 @@ def division(x, y):
7777
7878# 2. Instead of defining the global variables outside the function, using
7979# closure to define nonlocal variables inside the outer function, and then
80- # modyfy them inside the inner function, in this case achieving our goal
81- # without changing the global variables, this will provide a readiable and
82- # clean code and the code will be easy to debug.
80+ # modify them inside the inner function, in this case achieving our goal
81+ # without changing the global variables, will provide a readable and clean
82+ # code and the code will be easy to debug.
8383# 3. Closures are used in Python Decorators, as it will be discussed in
8484# section 4 later.
You can’t perform that action at this time.
0 commit comments