listed-assignment / streamlit app.py
S1ddharth's picture
init!
132b1dc
raw
history blame contribute delete
88 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)