DOMMETI commited on
Commit
5d4ccda
·
verified ·
1 Parent(s): 4516cd8

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -121,7 +121,7 @@ This simple experiment simulates a random prediction will it rain or not with re
121
  """)
122
  Trail=st.number_input("No_of_trail:",min_value=1,max_value=100,value=7)
123
  for i in range(1,Trail):
124
- if st.button('Will it rain or not'):
125
- result = random.choice(['Rain','NoRain'])
126
- st.write(f"The result is: **{result}**")
127
 
 
121
  """)
122
  Trail=st.number_input("No_of_trail:",min_value=1,max_value=100,value=7)
123
  for i in range(1,Trail):
124
+ st.button('Will it rain or not'):
125
+ result = random.choice(['Rain','NoRain'])
126
+ st.write(f"The result is: **{result}**")
127