test-space / app.py
haris018's picture
Create app.py
7973b29 verified
raw
history blame contribute delete
578 Bytes
import streamlit as st
st.set_page_config(page_title="Word & Letter Counter", layout="centered")
st.title("πŸ“ Word & Letter Counter")
text = st.text_area(
"Enter your text below:",
height=200,
placeholder="Type or paste your text here..."
)
if text:
words = text.split()
word_count = len(words)
letter_count = len(text.replace(" ", ""))
st.subheader("πŸ“Š Results")
st.write(f"**Words:** {word_count}")
st.write(f"**Letters (excluding spaces):** {letter_count}")
else:
st.info("Please enter some text to count words and letters.")