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,845 questions

51,766 answers

573 users

How to create a dictionary with value as a list in Python

4 Answers

0 votes
dict = {1: ['a', 'b'],
        2: ['c', 'd'],
        3: ['e', 'f'],
        4: ['g', 'h'],
        5: ['i', 'j']}

print(dict)


    
    
'''
run:

{1: ['a', 'b'], 2: ['c', 'd'], 3: ['e', 'f'], 4: ['g', 'h'], 5: ['i', 'j']}

'''

 



answered Apr 11, 2021 by avibootz
0 votes
dict = {1: ['a', 'b'],
        2: ['c', 'd'],
        3: ['e', 'f'],
        4: ['g', 'h'],
        5: ['i', 'j']}

print(dict[2])
print(dict[2][0])
print(dict[2][1])


    
    
'''
run:

['c', 'd']
c
d

'''

 



answered Apr 11, 2021 by avibootz
0 votes
def get_key(val):
    for key, value in dict.items():
         if val == value:
             return key
  
    return "value not exist"
     
dict = {1: ['a', 'b'],
        2: ['c', 'd'],
        3: ['e', 'f'],
        4: ['g', 'h'],
        5: ['i', 'j']}

print(get_key(['e', 'f']))



    
    
'''
run:

3

'''

 



answered Apr 11, 2021 by avibootz
0 votes
def get_key(val):
    for key, value in dict.items():
        if (val in value):
             return key
  
    return "value not exist"
     
dict = {1: ['a', 'b'],
        2: ['c', 'd'],
        3: ['e', 'f'],
        4: ['g', 'h'],
        5: ['i', 'j']}

print(get_key('e'))



    
    
'''
run:

3

'''

 



answered Apr 11, 2021 by avibootz
...