Report Bug
Qus : Which of the following is a distinct syntactic block?
Qus निम्नलिखित में से कौन सा एक विशिष्ट वाक्यात्मक ब्लॉक है?

A. Subroutines
B. Function
C. Definition
D. Modules


Solution
C. Definition



Explanation

In Python, indentation is used to define distinct syntactic blocks, such as loops, conditional statements, function definitions, and classes. This means that code within the same level of indentation is considered part of the same block.




Report Bug