develop / app.py
minhho's picture
Add Application file
bc557ee
raw
history blame
89 Bytes
import streamlit as st
x = st.slider("Select a value:")
st.write(x, "square is ", x * x)