Python Lists
A List is a collection of different kinds of values or items. Since Python lists are mutable, we can change their elements after forming. Below given are some of the programs using Python Lists: list1 = [1, 2, "Python", "Program", 15.9] list2 = ["Amy", "Ryan", "Henry", "Emma"] # printing the list print(list1) print(list2) # printing the type of list print(type(list1)) print(type(list2)) ----------------------------------------------------------------------------------------------------------------------------- a = [ 1, 2, "Ram", 3.50, "Rahul", 5, 6] b = [ 1, 2, "Ram", 3.50, "Rahul", 5, 6] a == b --------------------------------------------------------------------------------------------------------------------------- list = [1,2,3,4,5,6,7] print(list[0]) print(list[1]) print(list[2]) print(list[3]) # Slicing the elements print(list[0:6]) # B...