Note 9.9.1.
This workspace is provided for your convenience. You can use this activecode window to try out anything you like.
del
statement removes an element or elements from a list by using its position or a slice.del
handles negative indices and causes a runtime error if the index is out of range. In addition, you can use a slice as an index for del
. As usual, slices select all the elements up to, but not including, the second index, but do not cause runtime errors if the index limits go too far.