Skip to content
Advertisement

Can’t access full iteration of dictionary outside of for loop python

The problem

I am trying to access my tag_dict dictionary variable outside of a for loop so I can use that dictionary to learn how to insert that data into sqlite. (First Sqlite project)

If I print the tag_dict inside of the for loop it gives me all the data.

Here is the code:

JavaScript

Here is the result if I add a print tag_dict to the for loop:

JavaScript

Here is the result if I add a print tag_dict to the outside of the for loop:

JavaScript

Any ideas would be appreciated.

Thank you for your time,

Advertisement

Answer

On each iteration of the inner loop, tag_dict = tag.as_dict() is setting tag_dict to a new value. So, after the loop is finished, the variable only has the final value, and none of the previous values.

If you want to keep all of the values, you could use a list instead, and append tag.as_dict() to that list within the loop.

User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement