python operations on lists code example
Example 1: python lists
thislist = ["apple", "banana", "cherry"]
print(thislist[1])
Example 2: list in python
#list is data structure
#used to store different types of data at same place
list = ['this is str', 12, 12.2, True]