Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
wandb
/
paper_reader
like
1
Runtime error
App
Files
Files
Community
132b796
paper_reader
/
app.py
ayut
Create app.py
132b796
verified
4 months 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)