testspace / app.py
nroggendorff's picture
Update app.py
3564868 verified
raw
history blame
90 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x ** 2)