berak commited on
Commit
f9e28fe
·
1 Parent(s): cbe8396

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -1,6 +1,6 @@
1
  import streamlit as st
2
 
3
- x = st.slider('Select a value')
4
  st.write(x, 'squared is', x * x)
5
- y = st.slider('Select a value')
6
  st.write(y, 'times two is', y + y)
 
1
  import streamlit as st
2
 
3
+ x = st.slider('Select x value')
4
  st.write(x, 'squared is', x * x)
5
+ y = st.slider('Select y value')
6
  st.write(y, 'times two is', y + y)