DOMMETI commited on
Commit
d4faa20
·
verified ·
1 Parent(s): a457444

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -144,7 +144,7 @@ st.markdown("It's a subset of sample space or in easy term's the question's rais
144
  st.title("Example of an Event")
145
  Trail_2 = st.number_input("Number of Trials:", min_value=1, max_value=100, value=7,key="Trail_2")
146
  if st.button('Start the Experiment: Will it Rain or Not?',key="start_experiment_1"):
147
- st.write(f"Running {Trail_1} trials...")
148
  list1=[]
149
  for i in range(1, Trail_2 + 1):
150
  result = random.choice(['Rain', 'No Rain'])
 
144
  st.title("Example of an Event")
145
  Trail_2 = st.number_input("Number of Trials:", min_value=1, max_value=100, value=7,key="Trail_2")
146
  if st.button('Start the Experiment: Will it Rain or Not?',key="start_experiment_1"):
147
+ st.write(f"Running {Trail_2} trials...")
148
  list1=[]
149
  for i in range(1, Trail_2 + 1):
150
  result = random.choice(['Rain', 'No Rain'])