pdfToTable / app.py
Amram's picture
Upload app.py
8f0ba6e
raw
history blame
88 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)