Function in Python
Powerpoint presentation on Functions in Python. This Google slide covers most common features of python functions in details along with examples.
Python Lamba/Anonymous Function [ simplest Example ]
Python Lambda function is also known as anonymous function as these type of functions does not have any function name. These nameless functions are defined using lambda keywords
Python Program ArmStrong Number between two numbers
In this example, We will learn to generate Armstrong numbers between two numbers. This program uses the same function to determine to check Armstrong number. The source code of the function to check Armstrong number is def armstrong(n): m = n sum = 0 while(n != 0): rem = n % 10 sum += rem**3 […]
EMI Calculator Using Python
EMI Calculator using Python. EMI stands for Equated Monthly Installment, this calculator is used to calculate the monthly installment of your loan amount.