space3 / app.py
Narsil's picture
Narsil HF staff
List from root.
2c588ca
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)