kasravisia commited on
Commit
32cd578
·
1 Parent(s): bfb5972

Create streamlit_app.py

Browse files
Files changed (1) hide show
  1. streamlit_app.py +9 -0
streamlit_app.py ADDED
@@ -0,0 +1,9 @@
 
 
 
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+
3
+
4
+ text = st.text_area("Enter ur text")
5
+
6
+ count = 0
7
+ for char in text:
8
+ count += 1
9
+ st.write(count)