Docker_v / app.py
XDHDD's picture
Update app.py
1176804
raw
history blame
102 Bytes
import streamlit as st
@st.cache_data
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)