Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
marcelo-earth
/
first-space
like
1
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
marcelo-earth
commited on
Mar 21, 2023
Commit
99a5347
·
1 Parent(s):
c34c9a8
Add 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
+
x = st.slider('Select a value')
4
+
st.write(x, 'squared is', x * x)
5
+