Spaces:
Sleeping
Sleeping
File size: 386 Bytes
5a41e3f 76d0106 | 1 2 3 4 5 6 7 8 9 10 11 12 | 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") |