Describe the concepts of block or suite and body. What is indentation and how is it related to block and body?
Answers
Answered by
15
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
Answered by
9
Answer:
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.
Similar questions