bohmian commited on
Commit
8e0ff49
·
1 Parent(s): 62f8972

second commit

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -7,8 +7,8 @@ name = st.text_input("Enter your name", '')
7
 
8
  st.write(f"Hello {name}!")
9
 
10
- x = st.slider("Select an integer a", 0, 10, 1)
11
- y = st.slider("Select an integer b", 0, 10, 1)
12
 
13
  df = pd.DataFrame({"x": [x], "y": [y] , "x + y": [x + y]}, index = ["addition row"])
14
  st.write(df)
 
7
 
8
  st.write(f"Hello {name}!")
9
 
10
+ x = st.slider("Select an integer x", 0, 10, 1)
11
+ y = st.slider("Select an integer y", 0, 10, 1)
12
 
13
  df = pd.DataFrame({"x": [x], "y": [y] , "x + y": [x + y]}, index = ["addition row"])
14
  st.write(df)