PhoenixStormJr's picture
Update app.py
eb39f8d verified
raw
history blame
138 Bytes
import streamlit as st
user_input = st.text_input("label goes here", "")
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)