test / app.py /app.py
Tesneem's picture
add app file
6688474
raw
history blame
87 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x*x)