List in Python
Python : List in Python Program List
Program [1]
python program to find the 2nd largest number from the list of the numbers entered through keyboard.
Program [2]
python program that creates a list of numbers from 1 to 20 that are divisible by 4
Program [3]
python program to define a list of countries that are a member of BRICS Check whether a county is member of BRICS or not
Program [4]
Python program to read marks of six subjects and to print the marks scored in each subject and show the total marks
Program [5]
Python program to read prices of 5 items in a list and then display sum of all the prices product of all the prices and find the average
Program [6]
Python program to count the number of employees earning more than 1 lakh per annum
Program [7]
python program to create a list of numbers in the range 1 to 10 Then delete all the even numbers from the list and print the final list
Program [8]
python program to generate in the Fibonacci series and store it in a list Then find the sum of all values
Program [9]
python program to find minimum element from a list of elements along with its index in the list
Program [10]
Python program to calculate mean of a given list of numbers
Program [11]
Python program to search for an element in a given list of numbers
Program [12]
python program to count frequency of a given element in a list of numbers
Program [13]
python program to calculate the sum of integers of the list
Program [14]
python program to reverses an array of integers
Program [15]
python program to creates a third list after adding two lists
Program [16]
python program that input a list, replace it twice and then prints the sorted list in ascending and descending order
Program [17]
python program to check if the maximum element of the list lies in the first half of the list or in the second half
Program [18]
python program to display the maximum elements from the two list along with its index in its list
Program [19]
python program to swap list elements with even and locations
Program [20]
python program to rotate list elements with next elements
Program [21]
python program to increment the elements of list
Program [22]
python program to enter a list containing number between 1 and 12 then replace all the entries in the list that are greater than 10 with 10
Program [23]
python program that reverse the list of integers in place
Program [24]
python program to input two list and create third list which contains all elements of the first elements followed by all elements of second list
Program [25]
python program to inter list of string and create a new list that consist of those strings with their first characters removed
Program [26]
python program to create a list using for loop which consist of integers 0 through 49
Program [27]
python program to create a list using for loop which consist square of the integers 1 through 50
Program [28]
python program to create a list using for loop which consist a bb ccc dddd that ends with 26 copies of the letter z.
Program [29]
python program that takes any two list L and M of the same size and adds their elements together in another third list
Program [30]
python program to rotates the elements of list so that fist elements move to second and second to the third
Program [31]
python program to move all duplicate element to the end of list
Program [32]
python program to display the maximum and minimum values form specified range of indexes of a list
Program [33]
python program to compare two equal sized list and print the first index where they differ
Program [34]
Python program that receives a Fibonacci series term and returns a number telling which term it is
Program [35]
Python Program to accept three distinct digits and print all possible combinations from the digits
Program [36]
Python Program to find the successor and predecessor of the largest element in list