Spaces:
Sleeping
Sleeping
Commit ·
32cd578
1
Parent(s): bfb5972
Create streamlit_app.py
Browse files- 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)
|