oneeye / app.py
t4ai's picture
Update app.py
f5d6ba4
raw
history blame
No virus
121 Bytes
import streamlit as st
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)
st.write(x, 'times 2 is', x * 2)