Sets of individual statements making up a single code block are known as suites in Python.
Composite or complex statements for example if, def while and class are those which necessitate a header line and a suite.
Header lines start the statement (with the keyword) and terminate with a colon ( : ) and are followed by one or more lines which composition the suite.
syntax:
if expression:
Suite
else if expression :
Suite
else: