e-complaint / app.py
rairo's picture
Create app.py
9f92e30 verified
raw
history blame
112 Bytes
import streamlit as st
st.title("Hello World")
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)