dedent
Dedent refers to the act of reducing indentation in a block of code. Indentation is a common practice in many programming languages, particularly Python, to define code blocks and their scope. When you dedent, you are essentially moving the code to the left, out of the current block. This is often done when a loop or conditional statement has finished, and the subsequent code should no longer be considered part of that block.
In Python, indentation is not merely for readability; it is syntactically significant. A dedent signifies the