Pranav Indukuri has Published 50 Articles

How to count total number of occurrences of an object in a Python list?

Pranav Indukuri

Pranav Indukuri

Updated on 08-Nov-2022 12:48:44

List is one of the most commonly used data structures provided by python. List is a data structure in python that is mutable and has an ordered sequence of elements. Following is a list of integer values − Example Following is a list of integer values. lis= [1, 2, 7, ... Read More

How to append objects in a list in Python?

Pranav Indukuri

Pranav Indukuri

Updated on 08-Nov-2022 12:44:05

List is one of the most commonly used data structures provided by python. List is a data structure in python that is mutable and has an ordered sequence of elements. Following is a list of integer values Example Following is a list of integer values. lis= [11, 22, 33, 44, ... Read More

How to find the element from a Python list with a minimum value?

Pranav Indukuri

Pranav Indukuri

Updated on 08-Nov-2022 12:41:40

List is one of the most commonly used data structures provided by python. List is a data structure in python that is mutable and has an ordered sequence of elements. Following is a list of integer values − Example Following is a list of integer values. lis= [12, 22, 32, ... Read More

How to find the element from a Python list with a maximum value?

Pranav Indukuri

Pranav Indukuri

Updated on 08-Nov-2022 12:40:18

List is one of the most commonly used data structures provided by python. List is a data structure in python that is mutable and has an ordered sequence of elements. Following is a list of integer values Example Following is a list of integer values. lis= [1, 2, 3, 4, ... Read More

How do we get the size of a list in Python?

Pranav Indukuri

Pranav Indukuri

Updated on 08-Nov-2022 12:36:05

List is one of the most commonly used data structures provided by python. A list is a data structure in python that is mutable and has ordered sequence of elements. Following is a list of integer values. Example lis= [25, 52, 23, 34, 45] print(lis) Output If you execute ... Read More

How do we compare the elements of two lists in Python?

Pranav Indukuri

Pranav Indukuri

Updated on 08-Nov-2022 12:34:17

In this article we will look at different ways to compare the elements of two lists in Python. To compare two lists, we compare the data items of one list over the other list and check if they are same or not. Below are the two lists which are similar. ... Read More

Extract decimal numbers from a string in Python

Pranav Indukuri

Pranav Indukuri

Updated on 08-Nov-2022 12:23:08

To extract decimal numbers from a string in python, regular expressions are used. A regular expression is a group of characters that allows you to use a search pattern to find a string or a set of strings. RegEx is another name for regular expressions. The re module in Python ... Read More

How do make a flat list out of list of lists in Python?

Pranav Indukuri

Pranav Indukuri

Updated on 08-Nov-2022 12:15:33

A nested list is a list which has elements as lists itself. For example: [[1, 2, 3], [4, 5, 6], [7, 8, 9]] is a nested list as it has 3 lists ([1, 2, 3], [4, 5, 6], and [7, 8, 9]) as its elements. To flatten a list of ... Read More

How do we assign a value to several variables simultaneously in Python?

Pranav Indukuri

Pranav Indukuri

Updated on 08-Nov-2022 12:12:47

Python is not a "statically typed" programming language. We do not need to define variables or their types before utilizing them. Once we initially assign a value to a variable, it is said to be created. Each variable is assigned with a memory location. The assignment operator (=) assigns the ... Read More

How to find what is the index of an element in a list in Python?

Pranav Indukuri

Pranav Indukuri

Updated on 08-Nov-2022 11:48:30

Index in python refers to the position of the element within an ordered list. The starting element is of zero index and the last element is of n 1 index where n is the length of the list. In this tutorial, we will look at how to find out the ... Read More

Advertisements