networkbot / functions /text_stats.py
Adieva-15's picture
stats fixed
76d0106
Raw
History Blame Contribute Delete
386 Bytes
import re
def text_stats(text:str)->str:
if not text:
return "Текст пуст"
char_count=len(text)
char_no_space=len(text.replace(' ', ''))
word_count=len(text.split())
return(f"Символов (с пробелами): {char_count}\n"
f"Символов (без пробелов): {char_no_space}\n"
f"Слов: {word_count}\n")