Saved Bookmarks
| 1. |
Describe the concepts of block or suite and body. What is indentation and how is it related to block and body? |
|
Answer» Answer: A block or SUITE is a group of statements which are part of ANOTHER statement or function. Explanation: 1) Indentation refers to the placement of text further to the RIGHT or the LEFT, to separate it from surrounding text. 2) All statements inside a block or suite are intended at the same level. for e.g. def swap(a,b): #a,b are the arguments t=a #This the block of statements ,all THREE statements intent at the same level. a=b b=t |
|