I\'m new to python and I was wondering how string comparison is done
Let\'s say I have a list of strings containing state names like
states = [\"New York
To find all matches in the string you could do:
matches = [m for m in postal_addr.split() if m in states]