File size: 267 Bytes
231976d ca97d48 231976d |
1 2 3 4 5 6 7 8 9 10 11 12 |
import streamlit as st
from install import install
# install("logzero")
from logzero import logger
logger.info("streamlit version: %s", st.__version__)
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
st.write(" streamlit version", st.__version__)
|