Articles → Python → List In Python

List In Python






What Is The List?





Syntax


Variable_name = [item1, item2…..]



Example




classmates = ["Karan","sumit","amit”]
print(classmates)




Picture showing the output of the list in th python



Accessing The Individual Elements In The List




classmates = ["Karan","sumit","amit"]
print (classmates[0])
print (classmates[1])
print (classmates[2])




Picture showing accesing the elements of the list individually



Changing The Value Of The List




classmates = ["Karan","sumit","amit"]

print(classmates)

classmates[1] = "Tarun"

print(classmates)




Picture showing how to change the value of the list in python



Creating A List Of Multiple Data Types




persondata = ["Karan" , 35, "India",12.5]

print(persondata)




Picture showing how to create a list of multiple data types



Accessing Nested Lists In Python




[1,2,[3,4]]




nested_list = [1,2,[3,4]]
print("Element in nested list:", nested_list[2][0], " and ", nested_list[2][1])




Picture showing how the nested list is accessed in python



Empty List




empty_list = []

print("Display empty list:", empty_list)




Picture showing the empty list in python



Posted By  -  Karan Gupta
 
Posted On  -  Wednesday, February 13, 2019
 
Updated On  -  Thursday, May 2, 2019

Query/Feedback


Your Email Id
 
Subject
 
Query/FeedbackCharacters remaining 250