Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

Python list function tutorial

list1 = [10, 20, 4, 45, 99]
 
mx=max(list1[0],list1[1])
secondmax=min(list1[0],list1[1])
n =len(list1)
for i in range(2,n):
    if list1[i]>mx:
        secondmax=mx
        mx=list1[i]
    elif list1[i]>secondmax and 
        mx != list1[i]:
        secondmax=list1[i]
 
print("Second highest number is : ",
      str(secondmax))
      
 Output:-     
      
Second highest number is :  45
Comment

list example in python

# list of numbers
n_list = [1, 2, 3, 4]

# 1. adding item at the desired location
# adding element 100 at the fourth location
n_list.insert(3, 100)

# list: [1, 2, 3, 100, 4]
print(n_list)

# 2. adding element at the end of the list
n_list.append(99)

# list: [1, 2, 3, 100, 4, 99]
print(n_list)

# 3. adding several elements at the end of list
# the following statement can also be written like this:
# n_list + [11, 22]
n_list.extend([11, 22])

# list: [1, 2, 3, 100, 4, 99, 11, 22]
print(n_list)
Comment

lists example in python

>>> squares = [1, 4, 9, 16, 25]
>>> squares
[1, 4, 9, 16, 25]
>>> squares = [1, 4, 9, 16, 25]
>>> squares
[1, 4, 9, 16, 25]
>>> squares[:]
[1, 4, 9, 16, 25]
>>> squares + [36, 49, 64, 81, 100]
[1, 4, 9, 16, 25, 36, 49, 64, 81, 100]
>>> cubes = [1, 8, 27, 65, 125]  # something's wrong here
>>> 4 ** 3  # the cube of 4 is 64, not 65!
64
>>> cubes[3] = 64  # replace the wrong value
>>> cubes
[1, 8, 27, 64, 125]
>>> cubes.append(216)  # add the cube of 6
>>> cubes.append(7 ** 3)  # and the cube of 7
>>> cubes
[1, 8, 27, 64, 125, 216, 343]
>>> letters = ['a', 'b', 'c', 'd', 'e', 'f', 'g']
>>> letters
['a', 'b', 'c', 'd', 'e', 'f', 'g']
>>> # replace some values
>>> letters[2:5] = ['C', 'D', 'E']
>>> letters
['a', 'b', 'C', 'D', 'E', 'f', 'g']
>>> # now remove them
>>> letters[2:5] = []
>>> letters
['a', 'b', 'f', 'g']
>>> # clear the list by replacing all the elements with an empty list
>>> letters[:] = []
>>> letters
[]
>>> letters = ['a', 'b', 'c', 'd']
>>> len(letters)
4
>>> a = ['a', 'b', 'c']
>>> n = [1, 2, 3]
>>> x = [a, n]
>>> x
[['a', 'b', 'c'], [1, 2, 3]]
>>> x[0]
['a', 'b', 'c']
>>> x[0][1]
'b'
Comment

python list example

List = [1, 2, 3, "GFG", 2.3]
print(List)
Comment

PREVIOUS NEXT
Code Example
Python :: colab show all value 
Python :: stacked percentage bar chart 
Python :: Passive to active Python 
Python :: proclus python 
Python :: if you have a list and the user input one of the keys then output its value 
Python :: sample stochastic gradient boosting regressor algorithm 
Python :: raspian image with preinstalled python3 
Python :: python SynC 
Python :: remove variables withouth variance python 
Python :: calculate sin cos tan python 
Python :: appropriate graph for dataset visualization 
Python :: Python - Create a text border with dynamic size 
Python :: turtle screen close error fix 
Python :: groupby and assign number to each group pandas 
Python :: loc condition on first 3 columns of dataframe 
Python :: How to Use the abs() Function with an Integer Argument 
Python :: TAKING LIST INPUT IN PYTHON QUESTION 
Python :: huffepuf 
Python :: qubesos 
Python :: run php websevrer with python 
Python :: evaluate value of polynomial in python code 
Python :: what does filter do in stackapi python 
Python :: most valuable features in pandas model 
Python :: using -h on python file 
Python :: autoencoder for classification keras 
Python :: tuto date and time python 
Python :: geopy set proxy 
Python :: copy constructor python 
Python :: python convert ftp timestamp to datetime 
Python :: dtype cannot be bool python 
ADD CONTENT
Topic
Content
Source link
Name
1+8 =