Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
huggingface
/
text-data-filtering
like
36
Runtime error
App
Files
Files
Community
4
Fetching metadata from the HF Docker repository...
fc95975
text-data-filtering
/
app.py
teven
add app.py
fc95975
over 3 years 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)