CBSE Class 11 Computer Science Question 63 of 106

Python Fundamentals — Question 12

Back to all questions
12
Question

Question 12

What do you understand by block/code block/suite in Python ?

Answer

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.")