list python meaning code example
Example 1: how to make a list in python
list = [1, 2, 4, 5, 6]
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]
list = [1, 2, 4, 5, 6]
#list is data structure
#used to store different types of data at same place
list = ['this is str', 12, 12.2, True]