Answer
lst=[30, 1, 40, 2, 0, 1]
Work Step by Step
The following operations can be performed, with their purpose described in the description section to their right:
-lst.append(40) will add 40 at the end of list
-lst.insert(1,43) will add 1 and 43
-lst.extend(1,43) will extend the values of 1 and 43
-lst.remove(1) will eliminate 1 from list
-lst.pop() will delete last inserted element
-lst.sort() will sort down the list