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...
13b790b
LearnML
/
app.py
DavidHidary
Merge branch 'main' of https://huggingface.co/spaces/DavidHidary/LearnML
13b790b
over 1 year ago
raw
Copy download link
history
blame
Safe
108 Bytes
import
streamlit
as
st
import
math
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, math.sqrt(x))