20 lines
381 B
Python
20 lines
381 B
Python
import string
|
|
|
|
def clean(text: str) -> str:
|
|
|
|
s = text.split('\n')
|
|
|
|
if(len(s) > 0):
|
|
tok_1 = s[0].split(' ')
|
|
if len(tok_1) > 0 and tok_1[0].strip() in string.punctuation:
|
|
s_1 = ' '.join(tok_1[1:])
|
|
s[0] = s_1.capitalize()
|
|
else:
|
|
s[0] = s[0].capitalize()
|
|
|
|
return '\n'.join(s)
|
|
|
|
def format(text: str) -> str:
|
|
|
|
return text.replace('\r\n', '\n').replace('\n\n', '\n')
|