test2 / app.py
mailan2008
Add application file
70164f5
raw
history blame contribute delete
No virus
88 Bytes
import streamlit as st
x = st.slider("select a value")
st.write(x, 'squared is', x*x)