Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Araeynn
/
lyre
like
1
Paused
App
Files
Files
Community
1
Fetching metadata from the HF Docker repository...
80f9977
lyre
/
app.py
Araeynn
Create app.py
80f9977
verified
about 1 year ago
raw
Copy download link
history
blame
Safe
123 Bytes
import
streamlit
as
st
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)
st.write(x,
'cubed is'
, x * x * x)