trainingcoach / app.py
kzielins
app
4a16f40
raw
history blame contribute delete
No virus
114 Bytes
import streamlit as st
st.title('Trainig couch')
x = st.slider('Select a value')
st.write(x, 'squared is', x * x)