Ads block

Banner 728x90px

Anonymous Function


Anonymous Function        These functions are called anonymous because they are not declared in the standard manner by using the def keyword. The anonymous f…
Read more »

First class Objects


Treat function as first-class object               In Python both functions and classes are treated as objects which are called as first class objects, all…
Read more »

Strings in Python


String         In Python strings are arrays of bytes representing Unicode characters . However Python does not have a character data type , a single characte…
Read more »

Scope of Variable in Python


Scope of variable         All variables in a program may not be accessible at all locations in that program. This depends on where you have declared a variab…
Read more »

Function Arguments


Function Arguments            The arguments are the type of information which can be passed into the function. The arguments are specified in the parentheses…
Read more »

Function in Python


Function          A function is a block of organised, reusable code that is used to perform a single, related action. A functions is a set of statements tha…
Read more »