streamlit / app.py
azmisahin's picture
✨: a new test feature
6c662c5
raw
history blame contribute delete
88 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)