lawbot-tx / app.py
truevis
Update app.py
f890a9d
raw
history blame contribute delete
No virus
89 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared was', x * x)