unified_project / app.py
sh20raj's picture
app
2f45971
raw
history blame
111 Bytes
import streamlit as st
st.title("Hlw World")
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)