pdfToTable / app.py
Amram's picture
Update app.py
77f95fc
raw
history blame
92 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x *x )