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