Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
辞書が含まれているリストがあります
[{'item1':xxx, 'item2':xxx}, {'item1':xxx, 'item2':xxx}]
すべての「item1」を削除したいので、リストは次のようになります。
['item2':xxx}, {'item2':xxx}]
使用できる最短の構文は何ですか?forを使用してループできることは知っていますが、最も単純な構文を探しています。ありがとう!
最も単純な構文はforループです。
for D in L: del D['item1']