mrzarei commited on
Commit
4eb3439
1 Parent(s): 707512f

first commit

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -13,5 +13,5 @@ st.write(f"Hello {name}!")
13
 
14
  x = st.slider("Select an integer x", 0, 10, 1)
15
  y = st.slider("Select an integer y", 0, 10, 1)
16
- df = pd.DataFrame({"x": [x], "y": [y] , "x + y": [x * y]}, index = ["addition row"])
17
  st.write(df)
 
13
 
14
  x = st.slider("Select an integer x", 0, 10, 1)
15
  y = st.slider("Select an integer y", 0, 10, 1)
16
+ df = pd.DataFrame({"x": [x], "y": [y] , "x * y": [x * y]}, index = ["addition row"])
17
  st.write(df)