Spaces:
Sleeping
Sleeping
Update pages/2_Events.py
Browse files- pages/2_Events.py +1 -1
pages/2_Events.py
CHANGED
|
@@ -103,7 +103,7 @@ st.subheader("COMPOUND EVENT")
|
|
| 103 |
st.markdown("An event is said to be a compoud event when an event gives more than on event.")
|
| 104 |
st.title("Example of Compound Event")
|
| 105 |
list1=[1,2,3,4,5,6]
|
| 106 |
-
set1=
|
| 107 |
for i in list1:
|
| 108 |
if i%2==0:
|
| 109 |
set1.append(i)
|
|
|
|
| 103 |
st.markdown("An event is said to be a compoud event when an event gives more than on event.")
|
| 104 |
st.title("Example of Compound Event")
|
| 105 |
list1=[1,2,3,4,5,6]
|
| 106 |
+
set1=[]
|
| 107 |
for i in list1:
|
| 108 |
if i%2==0:
|
| 109 |
set1.append(i)
|