I'd like know how can I localize a specific type variable in a set of arrays, that could change its own length structure, i.e:
[[[[11.0, 16.0], [113.0, 16.0], [113.0, 41.0], [11.0, 41.0]], ("I WANNA BE LOCATED", 548967)]]
I just needed to extract the type variable that is a Str in this case:
"I WANNA BE LOCATED"
I tried use "for" loop, but it doesn't help, because possibly in my case, the string might be there in other indices. Is there another way? Maybe with numpy or some lambda?