far / app.py
kasravisia's picture
Rename streamlit_app.py to app.py
b74a6b7
raw
history blame contribute delete
121 Bytes
import streamlit as st
text = st.text_area("Enter ur text")
count = 0
for char in text:
count += 1
st.write(count)