alibayram's picture
add initial Streamlit app with slider and display of squared value
c3f7a0c
raw
history blame
89 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)