File size: 175 Bytes
626eca0 |
1 2 3 4 5 |
def wikipedia_title_and_openings_preprocessing(
wikipedia_title_and_openings: str, sepator: str = " <def>"
):
return wikipedia_title_and_openings.split(sepator, 1)[0]
|
626eca0 |
1 2 3 4 5 |
def wikipedia_title_and_openings_preprocessing(
wikipedia_title_and_openings: str, sepator: str = " <def>"
):
return wikipedia_title_and_openings.split(sepator, 1)[0]
|