project / app.py
mewmnp's picture
Update app.py
b14d134
raw
history blame
216 Bytes
import streamlit as st
sLen = st.slider('sepal length(cm) ', 0.0, 10.0)
sWid = st.slider('sepal width(cm) ', 0.0, 10.0)
pLen = st.slider('pepal length(cm) ', 0.0, 10.0)
pWid = st.slider('pepal width(cm) ', 0.0, 10.0)