How to delete key value pairs from list of dictionaries with Python

1 Answer

0 votes
lst = [
	{
		'python':87,
		'java':12
	},
	{
		'c':578,
		'c++':908
	},
	{
		'php':3,
		'c#':7
	}
]


del lst[1]['c++']

print(lst)

      

  
  
'''
run:
  
[{'python': 87, 'java': 12}, {'c': 578}, {'php': 3, 'c#': 7}]

'''

 



answered Jan 13, 2021 by avibootz
...