What do you understand by block/code block/suite in Python ?
26 Likes
A block/code block/suite is a group of statements that are part of another statement. For example:
if b > 5: print("Value of 'b' is less than 5.") print("Thank you.")
Answered By
11 Likes
What is an expression and a statement ?
What are variables ? How are they important for a program ?
What all components can a Python program contain ?
What is the role of indentation in Python ?