ANONYMOUS FUNCTION (or) LAMBDA FUNCTION IV. ANONYMOUS FUNCTION (ganesh.py) 1. SOURCE CODE # anonymous function squ=lambda a: a*a # calling anonymous function k=squ(5) # print the result print(“Square is : “,k) 2….
Tag: function in python example
How to use Function in Python
Python Function TYPES OF FUNCTION 1. Pre-defined function (Built-in function) 2. User defined function INVOKING FUNCTION I. FUNCTION WITH NO ARGUMENTS (test.py) 1. SOURCE CODE # creating a function def info(): print…