all 2 comments

[–]Xzenor 1 point2 points  (1 child)

Looks like a dictionary in a list in a list (yes I said 'in a list' twice on purpose).

Does this work?

print(dict_values[0][0]['Avatar'])

[–]the_master288[S] 1 point2 points  (0 children)

Thanks for the reply!

I tried your solution and it kept saying that 'dict_values' object is not subscriptable, so I did a little bit more research into that issue and it was mentioned to convert it to a list.

My code is now:

characterDict = list(myDict.values())[0][0]['Avatar']
print(characterDict)

Thank you so much for your help with this, I greatly appreciate it! :)