Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
mvoisin
/
compute_square
like
0
Sleeping
App
Files
Files
Community
mvoisin
commited on
Jan 19
Commit
2790b91
•
1 Parent(s):
ce18bb7
Add application file
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
+