spaces-demo / app.py
dmccreary's picture
updated app
6ef9f9c
raw
history blame contribute delete
No virus
151 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'Input (x) : ', x)
st.write(x, 'x squared: ', x * x)
st.write(x, 'x + x : ', x + x)