这类似于其他一些问题(Explicitly select items from a Python list or tuple,Grabbing specific indices of a list in Python),但我希望做相反的事情:
什么是指定要排除而不是选择的索引列表/元组的干净方法?我正在考虑类似于 R 或 MATLAB 的东西,您可以在其中指定要排除的索引,例如:
vector1 <- c('a', 'b', 'c', 'd')
vector2 <- vector1[-1] # ['b', 'c', 'd']
vector3 <- vector1[c(-1, -2)] # ['c', 'd']
有没有在 Python 中完成同样事情的好方法?抱歉,如果这是一个骗局,我不确定要搜索什么。