What do you understand by block/code block/suite in Python ?
Question :
What do you understand by block/code block/suite in Python ?
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.")