space3 / app.py
Narsil's picture
Narsil HF staff
List local files.
03d4ab2
raw history blame
No virus
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)