File size: 141 Bytes
8af582d
 
 
 
 
1
2
3
4
5
6
def preprocess_text(text: str) -> str:
    return text.strip().lower()

def postprocess_text(text: str) -> str:
    return text.capitalize()