Hugging Face
Models
Datasets
Spaces
Community
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
Narsil
/
space3
like
0
Sleeping
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
main
space3
/
app.py
Narsil
HF Staff
List from root.
2c588ca
about 4 years ago
raw
Copy download link
history
blame
contribute
delete
Safe
165 Bytes
import
streamlit
as
st
import
os
x = st.slider(
"Select a value"
)
st.write(x,
"squared is"
, x * x)
for
root, dirs, files
in
os.walk(
"/"
):
st.write(root, files)