File size: 121 Bytes
32cd578
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
import streamlit as st


text = st.text_area("Enter ur text")

count = 0
for char in text:
    count += 1
st.write(count)