space1 / app.py
Eloi Campeny
Add app.py
8cbe67d
raw
history blame
No virus
158 Bytes
import streamlit as st
st.title("This is my title")
st.markdown("This is my description")
x = st.slider("Select a value")
st.write(x," the square is ", x*x)