Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
ccapo
/
portfolio
like
1
Running
App
Files
Files
Community
b3005f8
portfolio
/
app.py
Christopher Capobianco
Create application file
b3005f8
3 months ago
raw
Copy download link
history
blame
Safe
90 Bytes
import
streamlit
as
st
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)