11. What all components can a Python program contain ?

A python program can contain the following components:

i) Expressions e.g. a+5

ii) Statements e.g. b = a+5

iii) Comments e.g. # this is a comment

iv) Function

def func_name():
    print('in a function')

v) Blocks and Indentation

class Vehicle:
    pass