Parameters: Parameters (Also called formal parameters) are the variables defined in function header. Parameters represent the values/references
to be received from function call.
For example, def display (a, b):
Local variable: A local variable is a variable which is defined inside a function, without keyword 'global'. A local variable can be used only in the function in which it is declared.