demo-app / app.py
fexeak's picture
test commit
f4ce215
raw
history blame
132 Bytes
import streamlit as st
print("this is demo app version 09261349")
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)