Update app.py
Browse files
app.py
CHANGED
|
@@ -1,4 +1,5 @@
|
|
| 1 |
import streamlit as st
|
| 2 |
-
|
| 3 |
-
|
| 4 |
-
st.
|
|
|
|
|
|
| 1 |
import streamlit as st
|
| 2 |
+
sLen = st.slider('Sepal lenght(cm) ', 0.0, 10.0)
|
| 3 |
+
sWid = st.slider('Sepal width(cm) ', 0.0, 10.0)
|
| 4 |
+
pLen = st.slider('Petal lenght(cm) ', 0.0, 10.0)
|
| 5 |
+
p= st.slider('Petal width(cm) ', 0.0, 10.0)
|