Posted in allcategorites programs in python

Python | Check if a number is an Armstrong Number or not without using Recursion

Let us take a look at some methods using which we can solve this problem. Some of the methods that we are going to see…

Continue Reading
Posted in allcategorites programs in python

Python | Shuffle a list using recursion

Here is the solution to shuffle list elements using recursion. We will go through all the methods available using which we can solve this problem….

Continue Reading
Posted in allcategorites programs in python

Python | Shuffle a list without recursion

Let us now take a look at all the methods to solve the given problem. In the previous article, you might have seen that we…

Continue Reading
Posted in allcategorites programs in python

Python | Implementing switch case using functions

Let us take an example to implement the switch case in Python. Method 1: Using case Output: Explanation: Here we took the input from the…

Continue Reading
Posted in allcategorites

Python function to check whether a number is perfect or not

Method 1: Using for loop Output: Explanation: This first method is to use a for loop to iterate through all the divisors of the number…

Continue Reading
Posted in allcategorites programs in python

Python | Find LCM using function

Let us take a look t methods that we have to find the LCM using functions Method 1: Using the divide operator Output: Explanation: Here…

Continue Reading
Posted in allcategorites programs in python

Python | Find HCF using function

Let us take a look at all the different methods that we have to find the HCF using Python functions Method 1: Using for loop…

Continue Reading
Posted in allcategorites programs in python

Python | Convert the binary number to decimal without using library function

In this article, we will be covering all the methods that we have to solve the given problem Method 1: Using a while loop Output:…

Continue Reading
Posted in allcategorites programs in python

Python | Create a basic operations calculator(+, -, /, and x), create a separate function for each operation

Let us take a look at an approach to solving this problem statement. Explanation: Here in this part, we have defined various functions to handle…

Continue Reading
Posted in allcategorites programs in python

Python | Detecting the number of local variables declared in a function

To calculate the number of local variables in a particular function we have a dedicated built-in function. Let us take a look at it Output:…

Continue Reading