us1 / app.py
usingh49's picture
Update app.py
a361b7b
raw
history blame
97 Bytes
import streamlit as st
print(1);
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)