Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
advinio
/
dataviz
like
0
Runtime error
App
Files
Files
Community
7bc0e4f
dataviz
/
app.py
Nicholas Armenta
First time
7bc0e4f
about 3 years ago
raw
Copy download link
history
blame
Safe
113 Bytes
#!/usr/bin/env python3
import
streamlit
as
st
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)