如何根据另一个子列表从多个子列表中移除元素在Python中

huangapple go评论124阅读模式
英文:

How to remove elements from multiple sublists according to another sublist in Python

问题

I have a list J and removing elements from J according to index. I am trying to remove elements of J[0]=[2, 6, 9, 10] according to index[0]=[0,3]. Now after removing, I have J=[6,9] which should append to create [[2, 6, 9, 10], [6, 9]]. Now it should take [6,9] and remove element according to index[1]=[1]. I present the current and expected outputs.

  1. J=[[2, 6, 9, 10]]
  2. index=[[0,3],[1]]
  3. u=0
  4. for v in range(0,len(index)):
  5. new_J = [j for i, j in enumerate(J[u]) if i not in index[v]]
  6. J.append(new_J)
  7. print(J)

The current output is

  1. [[2, 6, 9, 10], [6, 9], [2, 9, 10]]

The expected output is

  1. [[2, 6, 9, 10], [6, 9], [6]]
英文:

I have a list J and removing elements from J according to index. I am trying to remove elements of J[0]=[2, 6, 9, 10] according to index[0]=[0,3]. Now after removing, I have J=[6,9] which should append to create [[2, 6, 9, 10], [6, 9]]. Now it should take [6,9] and remove element according to index[1]=[1]. I present the current and expected outputs.

  1. J=[[2, 6, 9, 10]]
  2. index=[[0,3],[1]]
  3. u=0
  4. for v in range(0,len(index)):
  5. new_J = [j for i, j in enumerate(J[u]) if i not in index[v]]
  6. J.append(new_J)
  7. print(J)

The current output is

  1. [[2, 6, 9, 10], [6, 9], [2, 9, 10]]

The expected output is

  1. [[2, 6, 9, 10], [6, 9], [6]]

答案1

得分: 1

  1. 只需使用您的示例尝试这样做
  2. ```python
  3. J=[[2, 6, 9, 10]]
  4. index=[[0,3],[1]]
  5. u=0
  6. for v in range(0,len(index)):
  7. new_J = [j for i, j in enumerate(J[-1]) if i not in index[v]]
  8. J.append(new_J)
  9. print(J)
  1. <details>
  2. <summary>英文:</summary>
  3. Just take your example, try this:
  4. ```python
  5. J=[[2, 6, 9, 10]]
  6. index=[[0,3],[1]]
  7. u=0
  8. for v in range(0,len(index)):
  9. new_J = [j for i, j in enumerate(J[-1]) if i not in index[v]]
  10. J.append(new_J)
  11. print(J)

答案2

得分: 1

你可以使用 itertools.accumulate

  1. from itertools import accumulate
  2. J = [[2, 6, 9, 10]]
  3. idx = [[0,3], [1]]
  4. J = list(accumulate(idx, lambda lst, idx: [v for i, v in enumerate(lst) if i not in idx],
  5. initial=J[-1]))

  1. [[2, 6, 9, 10], [6, 9], [6]]
英文:

You can apply itertools.accumulate:

  1. from itertools import accumulate
  2. J = [[2, 6, 9, 10]]
  3. idx = [[0,3], [1]]
  4. J = list(accumulate(idx, lambda lst, idx: [v for i, v in enumerate(lst) if i not in idx],
  5. initial=J[-1]))

  1. [[2, 6, 9, 10], [6, 9], [6]]

huangapple
  • 本文由 发表于 2023年3月1日 15:20:44
  • 转载请务必保留本文链接:https://go.coder-hub.com/75600594.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定