LearnML / app.py
DavidHidary's picture
Merge branch 'main' of https://huggingface.co/spaces/DavidHidary/LearnML
13b790b
raw
history blame
108 Bytes
import streamlit as st
import math
x = st.slider('Select a value')
st.write(x, 'squared is', math.sqrt(x))