Snehadeep commited on
Commit
39406d3
1 Parent(s): e8f887a

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -119,7 +119,7 @@ y = st.slider('Select an integer y', 0, 10, 1)
119
  df = pd.DataFrame({'x': [x], 'y': [y] , 'x + y': [x + y]}, index = ['addition row'])
120
  if st.button('add'):
121
  result = get_data()
122
- st.dataframe('result: %s' % result)
123
  # df = (get_data())
124
  st.write(df)
125
 
 
119
  df = pd.DataFrame({'x': [x], 'y': [y] , 'x + y': [x + y]}, index = ['addition row'])
120
  if st.button('add'):
121
  result = get_data()
122
+ st.dataframe(result)
123
  # df = (get_data())
124
  st.write(df)
125