I have a list like ["Alex Smith", "John Jones/John Jones and Anna Conner", "James O'Brien"]. I'd like to convert it to a list of individual unique individuals: ["Alex Smith", "John Jones", "Anna Conner", "James O'Brien"]. I can use list(set(vector)) to get the uniqueness that I want, but the splitting is giving me a headache.
I looked at Flattening a shallow list in Python and it looked good, but it disggregated down to the indivual letters rather than the combination of first and last names.