1# Create a list
2new_list = []
3
4# Add items to the list
5item1 = "string1"
6item2 = "string2"
7
8new_list.append(item1)
9new_list.append(item2)
10
11# Access list items
12print(new_list[0])
13print(new_list[1])
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]