InterviewSolution
Saved Bookmarks
| 1. |
Describe the concepts of block or suite. What is indentation and how is it related toblock / suite? |
| Answer» CODE Blocks and Indentation. One of the most distinctive FEATURES of Python is its use of indentation to mark blocks of code. ... In most other programming languages, indentation is used only to HELP make the code look PRETTY. But in Python, it is required for INDICATING what block of code a statement belongs to... | |