jacaranda-app / app.py
lily-hust's picture
Create app.py
cf19c0f
raw
history blame
No virus
85 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x*x)