コード例 #1
0
def plain_text(text):
    return "".join(remove_puncuations(text.strip()).split())
コード例 #2
0
def plain_text_spaced(text):
    return " ".join(remove_puncuations(text.strip().lower()).split())