
Python program to calculate the sum of elements in a list
Hello everyone, I am back to discuss a new python program. Here we learn how to sum all the elements in a list quite easily. We use a predefined function called sum() and apply it …
Hello everyone, I am back to discuss a new python program. Here we learn how to sum all the elements in a list quite easily. We use a predefined function called sum() and apply it …
Hello everybody, this is a Python program that finds out the smallest and largest number on the list. Here we use 2 predefined functions min() and max() which check for the smallest and largest number in a …
A simple python program which checks whether a number is a palindrome or not. Generally, a number is said to be a palindrome number if its reverse is same as the original number. For Example, 121 …
Hello everybody, welcome back to programminginpython.com. Here in this post am going to tell you how to find the union of two lists in python. Generally, Union means getting all the unique elements in both the …
Hello everyone! Welcome back to programminginpython.com Here in the post am going to add one program which covers the python data-type list. Here I will separate all the even and odd numbers from a list to …
Hello everyone, welcome back! Here we learn about a python program which finds the square root of a given number. We find the square-root of a number using exponential operations. Here I calculate the square-root …
Hello everyone, Welcome back! Here we discuss a very simple python program which finds the square root of a given number using a module called Math and use one of its method sqrt(). In the …