We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac95192 commit c56086dCopy full SHA for c56086d
1 file changed
concepts/recursion/about.md
@@ -3,7 +3,7 @@
3
Recursion is a way to repeatedly execute code inside a function through the function calling itself.
4
Functions that call themselves are known as _recursive_ functions.
5
Recursion can be viewed as another way to loop/iterate.
6
-And like looping, a Boolean expression or `True / False` test is used to determine when to stop the recursive execution.
+And like looping, a Boolean expression or `True`/`False` test is used to determine when to stop the recursive execution.
7
8
_Unlike_ looping, recursion without termination in Python cannot not run infinitely.
9
Values used in each function call are placed in their own frame on the Python interpreter stack.
0 commit comments