Report Bug
Qus : How is a code block indicated in Python?
Qusपायथन में कोड ब्लॉक को कैसे दर्शाया जाता है?

A. Brackets
B. Indentation
C. Key
D. None of the above


Solution
B. Indentation



Explanation

Indent (using Tab) are used to define the block, in other programming language { } curly brackets are used to define the block but in Python indent are used.




Report Bug