text-app / character_count.py
oB3TAo
initial commit
33cd3a4
raw
history blame contribute delete
71 Bytes
def count_characters(text):
return f"Character Count: {len(text)}"