does list in python have prepend function code example
Example 1: append python
it=[]
for i in range(10):
it.append(i)
Example 2: append to lists python
list = ['a', 'b', 'c', 'd']
print list[1:-1] ## ['b', 'c']
list[0:2] = 'z' ## replace ['a', 'b'] with ['z']
print list ## ['z', 'c', 'd']