python: regex to find names inside string By Ricardo MallaOctober 21, 2023uncategorized import re pattern = r'\b[A-Z][a-z]+(?:\s[A-Z][a-z]+)?\b'