4BallCalc / 4ballcalc.py
LT4Ryan's picture
Upload 4ballcalc.py
bf9161c verified
raw
history blame contribute delete
91 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)