def snake_to_title_case(string: str) -> str: return " ".join(string.split("_")).title()