I want to expand "Dr." into either "Doctor" or "Drive" to clear the confusion.
string = 'Dr. Seuss Dr.'
if string[0:3] == "Dr.":
new_string = 'Doctor Seuss Dr.'
if string[:3] == "Dr.":
another_string = 'Dr. Seuss Drive'
Is there a better way to expand out "Dr."? I can't handle cases if the string is 'I like Dr. Seuss'!