KevSun's picture
Update app.py
5bb308b verified
raw
history blame
533 Bytes
import streamlit as st
st.set_page_config(page_title="Simple Text Analysis", layout="wide")
st.title("Simple Text Analysis")
user_input = st.text_area("Enter your text here:")
if st.button("Analyze"):
if user_input:
st.write(f"You entered: {user_input}")
st.write(f"Character count: {len(user_input)}")
st.write(f"Word count: {len(user_input.split())}")
else:
st.warning("Please enter some text to analyze.")
st.sidebar.title("About")
st.sidebar.info("This is a simple text analysis app.")