I want to create an empty list (or whatever is the best way) that can hold 10 elements.
After that I want to assign values in that list, for example this is supposed
s1 = [] for i in range(11): s1.append(i) print s1
To create a list, just use these brackets: "[]"
To add something to a list, use list.append()