Hello I'm new with python (actually moving from VB)
In VB if I had d list of objects I could do something like this:
Dim value_to_find = List_of_objects.Where(Function(x) x.Something).FirstOrDefault
on my current project, my data structure is a list of dicts. Something like this:
[{Id:1,name:Bob, surname:Brown, dateB:07/12/1985,status:Active,code:202020, contact:1,
list_of_dicts2[{id:1,dateB:07/07/2020},{id:2,dateB:07/08/2020}]}]
Now I want to access a certain dateB in the list_of_dicts2, if there a way to do it like in Visual Basic? or I have to loop through all of it?