Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
wRuanMing
/
demo2
like
0
Runtime error
App
Files
Files
Community
main
demo2
/
app.py
wRuanMing
init
42be2d6
over 1 year ago
raw
Copy download link
history
blame
contribute
delete
129 Bytes
#!/usr/bin/env python
# coding=utf-8
import
streamlit
as
st
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)