Streamlit / app.py
Sorghum grass
Update app.py
3bb26d0
raw
history blame
93 Bytes
import streamlit as st
x = st.slider('Select a value')
x+=1
st.write(x, 'squared is', x * x)