Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
justheuristic
/
demo-hse-22
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
justheuristic
commited on
Dec 9, 2022
Commit
f57db59
·
1 Parent(s):
8a24f9d
app.py
Browse files
Files changed (1)
hide
show
app.py
+9
-0
app.py
ADDED
Viewed
@@ -0,0 +1,9 @@
1
+
import streamlit as st
2
+
3
+
4
+
st.markdown("### Hello dude!")
5
+
6
+
7
+
text = st.text_area("please enter text", value="dummy")
8
+
output = text[::-1]
9
+
st.markdown(output)