example / app.py
Vincimus's picture
Create app.py
d7af19b verified
raw
history blame contribute delete
120 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
st.write("Example deployment")