Python Forum
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Nested Lists & Dictionaries
#1
So I'm learning about nested dictionaries and loops.
I wrote the following short program:
a_morning = {"Sara": ["dressed", "breakfasted"], 
             "Alex": ["breakfasted", "dressed"]}

for name in a_morning:
        print(name + " " + a_morning[name][0] + " and " + a_morning[name][1])
The lesson talks about how lists can keep track of sequence or order . The code piece above shows how Alex and Sara begin their morning. I use a dictionary and inside it I nest a list.

Is the format for the for loop the only one I can apply to a dictionary? I can't seem to use a numerical/integer index (returns an error I think) like:

for i in range(len(a_morning))
Reply
#2
When working with dicts I prefer doing one of the following. There are other ways.
Dicts work with key, value pairs

a_morning = {"Sara": ["dressed", "breakfasted"], 
             "Alex": ["breakfasted", "dressed"]}

for key, val in a_morning.items():
    print(key , ', '.join(val))
    print(key , val[0])
    print(key , val[1])
    print()
Output:
Sara dressed, breakfasted Sara dressed Sara breakfasted Alex breakfasted, dressed Alex breakfasted Alex dressed
Hudjefa likes this post
I welcome all feedback.
The only dumb question, is one that doesn't get asked.
My Github
How to post code using bbtags
Download my project scripts


Reply
#3
Dictionaries don't support indexing; you only access their values by key. So, it doesn't make sense what you're trying to do.
Hudjefa likes this post
Reply
#4
You may certainly use integers as the names of the array keys, and almost anything as the value under that name.

Nesting can be complex. You may lose the track of what is where.

madrugada = {1:{"who": "Sara", "what": ["dressed", "breakfasted"]},
             2: {"who": "Alex", "what": ["breakfasted", "dressed"]}}

madrugada[1]

Output:
{'who': 'Sara', 'what': ['dressed', 'breakfasted']} [python]madrugada[2][/python] {'who': 'Alex', 'what': ['breakfasted', 'dressed']}
for key in madrugada.keys():
             print(key, madrugada[key])

Output:
1 {'who': 'Sara', 'what': ['dressed', 'breakfasted']} 2 {'who': 'Alex', 'what': ['breakfasted', 'dressed']}
madrugada[1]["who"]

Output:
'Sara'
madrugada[1]["what"]

Output:
['dressed', 'breakfasted']
Hudjefa likes this post
Reply
#5
Since python 3.6 the only real difference between dictionaries and lists is that index keys for lists have to be int while dictionary keys only have to be hashable. Prior to 3.6, dictionaries were unordered. You could iterate through a dictionary, but the order of items was unpredictable.

Unless a dictionary is huge, it is easy to index a dictionary as you would a list, by position. All you need is a list of the dictionary keys.
a_morning = {
    "Sara": ["dressed", "breakfasted"], 
    "Alex": ["breakfasted", "dressed"]
}
names = list(a_morning)  # makes list of dictionary keys
name = names[0]
print(name + " " + a_morning[name][0] + " and " + a_morning[name][1])
If you only want to know the "first" item in a dictionary it is safer to use an iterator. This works quickly for small or giant dictionaries.
a_morning = {
    "Sara": ["dressed", "breakfasted"], 
    "Alex": ["breakfasted", "dressed"]
}

name = next(iter(a_morning))
print(name + " " + a_morning[name][0] + " and " + a_morning[name][1])
But you really shouldn't ever care about the order of items in a dictionary. If you want something that acts like a list, make a list. If you want something that acts like a dictionary, make a dictionary.
Hudjefa likes this post
Reply
#6
The name as key for a "database" is a problem, if you have two or more persons with the same name.

You could use an easier data structure:
a_morning = [
    ["Sara", "dressed", "breakfasted"],
    ["Alex", "breakfasted", "dressed"],
]

name, word1, word2 = a_morning[0]
With star-assignment.
a_morning = [
    ["Sara", "dressed", "breakfasted"],
    ["Alex", "breakfasted", "dressed"],
]

name, *words = a_morning[0]
# name is the first element of a_morning[0]
# words is a list with variable length
Or you put dicts in a list:

a_morning = [
    {"name": "Sara", "color": "red"},
    {"name": "Alex", "color": "blue"},
]

player0 = a_morning[0]
Iterating over the list by filtering by name:
a_morning = [
    {"name": "Sara", "color": "red"},
    {"name": "Alex", "color": "blue"},
]


only_saras = []
for player in a_morning:
    if player.get("name", "").lower() == "sara":
        only_saras.append(player)
Hudjefa likes this post
Almost dead, but too lazy to die: https://sourceserver.info
All humans together. We don't need politicians!
Reply


Possibly Related Threads…
Thread Author Replies Views Last Post
  Mirroring disk structures in nested dictionaries Curbie 12 2,159 Oct-01-2024, 10:52 PM
Last Post: Curbie
  List all possibilities of a nested-list by flattened lists sparkt 1 1,729 Feb-23-2023, 02:21 PM
Last Post: sparkt
  Split dict of lists into smaller dicts of lists. pcs3rd 3 3,260 Sep-19-2020, 09:12 AM
Last Post: ibreeden
  Comparing items from 2 lists of dictionaries illwill 7 4,070 Sep-14-2020, 10:46 PM
Last Post: bowlofred
  Searching through Nested Dictionaries and Lists Dave_London 1 11,693 Jul-09-2020, 03:36 PM
Last Post: mrdominikku
  Creating Nested Dictionaries Confusion gw1500se 2 2,790 May-18-2020, 11:16 PM
Last Post: gw1500se
  Unpacking nested lists yonatan776 1 2,750 Apr-14-2020, 08:50 PM
Last Post: buran
  Help: for loop with dictionary and nested lists mart79 1 2,366 Apr-12-2020, 02:52 PM
Last Post: TomToad
  Finding value in nested dictionaries with lists mart79 16 17,834 Mar-08-2020, 08:16 PM
Last Post: ndc85430
  nested dictionaries to CSV mart79 9 16,065 Jul-29-2019, 04:59 AM
Last Post: mart79

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020