c1ndy23 commited on
Commit
aeb6c43
·
1 Parent(s): 94f2e22

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -1,4 +1,6 @@
1
  import streamlit as st
2
 
3
- x = st.slider('Select a value')
4
- st.write(x, 'squared is', x * x)
 
 
 
1
  import streamlit as st
2
 
3
+ sLen = st.slider('Sepal lenght (cm.)', 0.0, 10.0)
4
+ sWid = st.slider('Sepal width (cm.)', 0.0, 10.0)
5
+ pLen = st.slider('Petal lenght (cm.)', 0.0, 10.0)
6
+ pWid = st.slider('Pepal width (cm.)', 0.0, 10.0)