'How would I access a list in a dictionary?

I am currently working with the ROBLOX API service and giving me the audit log from a group. The only problem which has occurred now is: I don't know how I would use it normally. Anyone of you got maybe an idea how I would access the date: dictionary -> data . The dictionary is looking like this when I use: for x in finalresponse:

enter image description here .

When I then just print the dictionary by itself it comes this:

enter image description here

So, as I already asked: How would I access then in the dictionary the list data with all the other important data?



Solution 1:[1]

print(finalresponse["data"])

Basic :)

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Floh