Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
hamza50
/
example
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
351da9f
example
/
app.py
hamza50
Create app.py
351da9f
almost 3 years ago
raw
Copy download link
history
blame
Safe
88 Bytes
import
streamlit
as
st
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)