fp2 / app.py
SmeetPatel's picture
update app.py
b349f51 verified
raw
history blame
114 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
st.write("Hello world!")