SyntaxFix
Write A Post
Hire A Developer
Questions
To access the data, you'll need to do this:
foo = { "foo0": "bar0", "foo1": "bar1", "foo2": "bar2", "foo3": "bar3" } for bar in foo: print(bar)
Or, to access the value you just call it from the key: foo[bar]
foo[bar]