Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,864 questions

51,786 answers

573 users

How to access key value pairs in list of dictionaries with Python

1 Answer

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


print(lst[0])
print(lst[0]['python'])

print(lst[1])
print(lst[1]['c++'])

      

  
  
'''
run:
  
{'python': 87, 'java': 12}
87
{'c': 578, 'c++': 908}
908
 
'''

 



answered Jan 13, 2021 by avibootz
...