What triggers the interpreter to begin evaluating block of code in python?
Answers
Answered by
1
Explanation:
Most of the programming languages like C, C++, Java use braces { } to define a block of code. Python uses indentation. A code block (body of a function, loop etc.) starts with indentation and ends with the first unindented line. The amount of indentation is up to you, but it must be consistent throughout that block
Similar questions