saritha5 commited on
Commit
79b3404
1 Parent(s): 62ffabc

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -5
app.py CHANGED
@@ -32,10 +32,9 @@ st.header('Enter the Spectification')
32
  max_value = st.number_input('Enter the Maximun Value of Price',min_value=50,value = 500,step=1)
33
  step = st.number_input('Enter the Price step',min_value = 10,value = 10,step=1)
34
  a = prediction(max_value,step,pc2
35
- def fun():
36
- st.header('Optimal Price Action')
37
- st.subheader(str(a))
 
38
 
39
- if st.button('Predict'):
40
- fun()
41
 
 
32
  max_value = st.number_input('Enter the Maximun Value of Price',min_value=50,value = 500,step=1)
33
  step = st.number_input('Enter the Price step',min_value = 10,value = 10,step=1)
34
  a = prediction(max_value,step,pc2
35
+ st.header('Optimal Price Action')
36
+ st.subheader(str(a))
37
+
38
+
39
 
 
 
40