_bal / app.py
Balnur26's picture
04.27
311bcb4
raw
history blame contribute delete
91 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)