I still have a hard time understanding list comprehensions.
Take for example the following list:
lst = ["Medical Center", "Playground", "Park", "Soccer Field", "Swim School", "Summer Camp", "Museum"]
Qn 1) How would one use list comprehension to iterate though the above list and check against a panda dataframe that has a hundred elements (lets say)?
Qn 2) I was wondering if there was a good resource that has more clarity on list comprehension; I have read some online resources, and while simpler operations are easier to understand, once it becomes a list in a list (in a list, in a list etc) then its as clear as mud