space-streamlit / app.py
Miguel Angel
main | Init my repo with streamlit first changes
78f0864
raw
history blame contribute delete
158 Bytes
import streamlit as st
st.title("this is my demo")
st.markdown("## this is my description")
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)