1# empty list
2my_list = []
3
4# list of integers
5my_list = [1, 2, 3]
6
7# list with mixed data types
8my_list = [1, "Hello", 3.4]
1#list is data structure
2#used to store different types of data at same place
3list = ['this is str', 12, 12.2, True]