I have a tuple that contains lists as elements, and each list contains a tuple.
How could I access the individual value of each dictionary element?
The structure would be something like this:
mitupla[
({"Francia": "Paris", "Habitantes": 60000000}, true),
({"España": "Madrid", "Habitantes": 48000000}, false)
]
How could I access the value of France, Spain or true in Python?