I have strings with owner names and I need to identify whether they contain a last name twice.
For example, I may have an owner name that reads "BENNETT MCCARL & ARNETTE BENNETT".
I would like to return True if any word is found in the string twice, and False if all words in the string are unique.
Does anyone know how I can do this using Python?