Streamlit-Demo / app.py
rodragon737's picture
Add application file
03c98ea
raw
history blame contribute delete
No virus
88 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)