LearnML / app.py
DavidHidary's picture
Update app.py
6ddc6f5
raw
history blame
No virus
109 Bytes
import streamlit as st
import math
x = st.slider('Select a value')
st.write(x, 'squared is', math.sqrt(x))