mewmnp commited on
Commit
b14d134
·
1 Parent(s): d2e743c

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -3
app.py CHANGED
@@ -1,4 +1,5 @@
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
+ sLen = st.slider('sepal length(cm) ', 0.0, 10.0)
3
+ sWid = st.slider('sepal width(cm) ', 0.0, 10.0)
4
+ pLen = st.slider('pepal length(cm) ', 0.0, 10.0)
5
+ pWid = st.slider('pepal width(cm) ', 0.0, 10.0)