space3 / app.py
Narsil's picture
Narsil HF Staff
List from root.
2c588ca
raw
history blame contribute delete
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)