If we add a string in a function using triple quotes (Docstring) then we can access this string by calling function_name.__doc__
Anonymous Functions (Lambda Function)
An lambda function is similar to a normal function except it is confined to one line and does not have a name
Arguments (*args) & Keyword Arguments (**kwargs)
If we need to pass a varying amount of arguments to a function then instead of creating a function for each of them we can make use of *args
and **kwargs
Lambda Functions with Practical Examples in Python | by Susan Maina