Describe the concept of blocks and body. What is indentation and how is it related to block and body?

blocks are set of statements which can be part of another statement or function in a program.
Indentation is a way to telling that a set of statement belongs to particular block by placing statement further right or left.
Indentation helps a python program to understand them in which order each block or statement should be executed.

error: Content is protected !!