harmdevries commited on
Commit
e8795a3
·
1 Parent(s): 44ac4da

Update app.py

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