joethequant's picture
testing it out
641ca8f
raw
history blame contribute delete
No virus
158 Bytes
import streamlit as st
# Set page title
st.set_page_config(page_title="My Streamlit App")
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)