Page 3 - LN
P. 3

Lesson Note
























               Return command in Python specifies what value is to be returned back to the calling
               function/program. Function can take input value as parameters execute them and return output (if
               required) to the calling function/program with a return statement.

               A single program can contain multiple user defined functions.
               Ex.































               In Python a function can return more than one values. Ex.
   1   2   3   4   5   6   7   8