Louis I. answered 06/01/19
Computer Science Instructor/Tutor: Real World and Academia Experienced
Sure you can - use the list pop() method.
For example:
>>> numbers = [1,2,4,8,16,32,64]
## remove the 3rd element (the value of 4)
>>> numbers.pop(2)
>>> numbers
[1, 2, 8, 16, 32, 64]
## or remove the last number (value 64)
>>> numbers.pop(-1)
>>> numbers
[1, 2, 8, 16, 32]