Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
rairo
/
e-complaint
like
0
Sleeping
App
Files
Files
Fetching metadata from the HF Docker repository...
rairo
commited on
Aug 12, 2024
Commit
9f92e30
·
verified
·
1 Parent(s):
813e7b0
Create app.py
Browse files
Files changed (1)
hide
show
app.py
+5
-0
app.py
ADDED
Viewed
@@ -0,0 +1,5 @@
1
+
import streamlit as st
2
+
3
+
st.title("Hello World")
4
+
x = st.slider('Select a value')
5
+
st.write(x, 'squared is', x * x)