Hugging Face
Models
Datasets
Spaces
Posts
Docs
Solutions
Pricing
Log In
Sign Up
Spaces:
bpandey23
/
postgres
like
0
Runtime error
App
Files
Files
Community
0a5ecea
postgres
/
app.py
bpandey23
Create app.py
397a6b7
verified
about 2 months ago
raw
Copy download link
history
blame
Safe
89 Bytes
import
streamlit
as
st
x = st.slider(
'Select a value'
)
st.write(x,
'squared is'
, x * x)