Ads block

Banner 728x90px

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 »

Loop Control Statements


Loop Control Statements
Loop control statements            Loop control statements change execution from it's normal sequence. When execution leaves a scope, all automatic objec…
Read more »

Python Quiz 6


Q.1 : In Python, Answer :   4.         All of the above Q.2: Assume that the 'min' function computes the minimum of two values, and 'max' f…
Read more »