Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
DavidHidary
/
LearnML
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
a7c75e6
LearnML
/
app.py
DavidHidary
sqrt
a7c75e6
over 1 year ago
raw
Copy download link
history
blame
107 Bytes
import
streamlit
as
st
import
math
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, math.sqrt(x))