this is my nested list
list = [[01,"ny",100], [02,'jr",200], [03, "la", 300,"ny"]]
My Question is:
how to search for an item in the a specific position of nested list ex: i want to search for the item "ny" in the 2nd position of nested list means, my search has to match the item "ny" in only [][1] position it has to ignore "ny" in [3][3].