I have this list with dictionaries:
[{"Name": "Tore", "Score": 7}, {"Name": "Arne", "Score": 10}, {"Name": "Terje", "Score": 4}]
and want to put the information in variables so i can get this:
first = "Tore
first_number = 7
second = "Arne
second-number = 10
How do I access these values in these variables?
Tried allot of different ways, but neither works.