i'm trying to access a dictionary within a list and cannot seem to get my for loop to get the key, then the value...
i've place an image herein so that its easy for me to explain.
so you can see, i would like to navigate to currency = AUD and assign the balance value to a variable, call it aud_balance =
for curr in result_bal_qrp: for k in curr: if curr[k] == 'AUD':
I cannot seem to get the key AUD... so im officially stuck.
I've tried to search for dictionary inside of lists etc but no examples of my problem, or maybe ive understood my problem wrong (highly likely)
Any help is appreciated.
