Posts by Shriprakash Tiwari

Author Biographical Info: Not available

Python Dictionary values() Method

By Shriprakash Tiwari

In this tutorial, we are going to learn the methods to find the values of a dictionary in Python. In Python, we have keys and values by a semicolon ( : ) enclosed within curly brac.... Read More

Remove all the digits from list of strings in Python

By Shriprakash Tiwari

In this tutorial, we are going to learn various methods to remove the digits from a list of string items in Python. To remove digits, Python has multiple libraries that we can use..... Read More

Print right angle triangle in Python

By Shriprakash Tiwari

In this tutorial, we are going to learn how to print the right-angled triangle in Python. Using for loop we can print the right-angled triangle. To understand this you should know .... Read More

Sum of all the factors of a number in Python

By Shriprakash Tiwari

In this tutorial, we will learn to sum all the factors of a number in Python. Before start, we should now what is factors and how two find factors of a number. Factors are numbers .... Read More

Find cube root of a number in Python

By Shriprakash Tiwari

In this tutorial, we are going to learn how to find the cube root of a number in Python. How to find the cube root of a number in Python Let us understand with an example. Suppose .... Read More

Print all positive numbers from a list in Python

By Shriprakash Tiwari

In this tutorial, We are going to learn, how to print all positive numbers from a list in Python. There are various ways to find all positive numbers from a list in Python. As we k.... Read More

Divide all elements of a list by a number in Python

By Shriprakash Tiwari

In this tutorial, we are going to learn how to divide the elements of a list in Python. As we know that in List we can store elements like int, float, string, etc. As we know that .... Read More

Slice Notation in Python

By Shriprakash Tiwari

In this tutorial, we are going to learn, how to perform slice notation in Python. In slicing, we have forward slicing as well as backward slicing. Forward slicing starts from ̵.... Read More

Related Posts