cultura_space / app.py
Charles De Dampierre
hello
9da0eca
raw
history blame
No virus
118 Bytes
import streamlit as st
x = st.slider("Select a value")
st.write(x, "squared is", x * x)
st.write(x, " Hello", x * x)