Skip to content

Commit c56086d

Browse files
BethanyGYrahcaz7
andauthored
Update concepts/recursion/about.md
Co-authored-by: Yrahcaz <74512479+Yrahcaz7@users.noreply.github.com>
1 parent ac95192 commit c56086d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

concepts/recursion/about.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Recursion is a way to repeatedly execute code inside a function through the function calling itself.
44
Functions that call themselves are known as _recursive_ functions.
55
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.
6+
And like looping, a Boolean expression or `True`/`False` test is used to determine when to stop the recursive execution.
77

88
_Unlike_ looping, recursion without termination in Python cannot not run infinitely.
99
Values used in each function call are placed in their own frame on the Python interpreter stack.

0 commit comments

Comments
 (0)