Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 {
|
| 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'])
|