numpy-equivalent of list.pop?

Is there a numpy method which is equivalent to the builtin pop for python lists?

Popping obviously doesn’t work on numpy arrays, and I want to avoid a list conversion

Leave a Comment