A group of statements that is part of another statement or function is called a block/code or block/suite.
i = 0
if i < 10:
i = 10 # this is a code block
print(i)
A group of statements that is part of another statement or function is called a block/code or block/suite.
i = 0
if i < 10:
i = 10 # this is a code block
print(i)