Question: In Python, how can the compiler identify the inner block of a for loop?
- `because of the level of indentation after the for loop`
- `because of the end keyword at the end of the for loop`
- `because of the block is surrounded by brackets ({})`
- `because of the blank space at the end of the body of the for loop`
Answer: The correct answer of the above question is Option A:`because of the level of indentation after the for loop`