README / app.py
cheentaramanujan's picture
Create app.py
21ca438 verified
Raw
History Blame Contribute Delete
87 Bytes
mport streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)