Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
import streamlit as st
|
|
|
2 |
|
3 |
# Page Configurations
|
4 |
st.set_page_config(
|
@@ -7,8 +8,8 @@ st.set_page_config(
|
|
7 |
)
|
8 |
|
9 |
# Title and Description
|
10 |
-
st.title("CBT: Digestive System")
|
11 |
-
st.write("This Computer-Based Tutorial (CBT) is designed for Class 6 students to learn about the digestive system in
|
12 |
|
13 |
# Sidebar
|
14 |
st.sidebar.header("Navigation")
|
@@ -19,6 +20,7 @@ if selected_section == "Introduction":
|
|
19 |
st.header("Introduction")
|
20 |
st.write("The digestive system is a group of organs that work together to break down food into smaller parts so the body can use them for energy, growth, and repair.")
|
21 |
st.image("https://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Digestive_system_diagram_en.svg/1200px-Digestive_system_diagram_en.svg.png", caption="Diagram of the Digestive System")
|
|
|
22 |
|
23 |
elif selected_section == "Organs of the Digestive System":
|
24 |
st.header("Organs of the Digestive System")
|
@@ -33,6 +35,7 @@ elif selected_section == "Organs of the Digestive System":
|
|
33 |
- **Pancreas**: Produces enzymes that help in digestion.
|
34 |
- **Rectum and Anus**: Store and eliminate waste.
|
35 |
""")
|
|
|
36 |
|
37 |
elif selected_section == "Process of Digestion":
|
38 |
st.header("Process of Digestion")
|
@@ -45,9 +48,14 @@ elif selected_section == "Process of Digestion":
|
|
45 |
5. **Absorption**: Nutrients are absorbed into the bloodstream in the small intestine.
|
46 |
6. **Elimination**: Waste is eliminated through the rectum and anus.
|
47 |
""")
|
|
|
|
|
|
|
|
|
|
|
48 |
|
49 |
elif selected_section == "Quiz":
|
50 |
-
st.header("Quiz: Test Your Knowledge")
|
51 |
st.write("Answer the following questions to test your knowledge of the digestive system.")
|
52 |
|
53 |
# Question 1
|
@@ -56,9 +64,9 @@ elif selected_section == "Quiz":
|
|
56 |
("Mouth", "Stomach", "Small Intestine", "Large Intestine")
|
57 |
)
|
58 |
if question1 == "Small Intestine":
|
59 |
-
st.success("Correct! The small intestine absorbs nutrients from food.")
|
60 |
elif question1:
|
61 |
-
st.error("Incorrect. The correct answer is 'Small Intestine'.")
|
62 |
|
63 |
# Question 2
|
64 |
question2 = st.radio(
|
@@ -66,9 +74,9 @@ elif selected_section == "Quiz":
|
|
66 |
("To digest proteins", "To help digest fats", "To break down carbohydrates", "To eliminate waste")
|
67 |
)
|
68 |
if question2 == "To help digest fats":
|
69 |
-
st.success("Correct! Bile helps in the digestion of fats.")
|
70 |
elif question2:
|
71 |
-
st.error("Incorrect. The correct answer is 'To help digest fats'.")
|
72 |
|
73 |
# Question 3
|
74 |
question3 = st.radio(
|
@@ -76,8 +84,9 @@ elif selected_section == "Quiz":
|
|
76 |
("Liver", "Stomach", "Pancreas", "Esophagus")
|
77 |
)
|
78 |
if question3 == "Pancreas":
|
79 |
-
st.success("Correct! The pancreas produces enzymes that aid in digestion.")
|
80 |
elif question3:
|
81 |
-
st.error("Incorrect. The correct answer is 'Pancreas'.")
|
82 |
|
83 |
-
st.write("Keep learning and practicing!")
|
|
|
|
1 |
import streamlit as st
|
2 |
+
import time
|
3 |
|
4 |
# Page Configurations
|
5 |
st.set_page_config(
|
|
|
8 |
)
|
9 |
|
10 |
# Title and Description
|
11 |
+
st.title("π CBT: Digestive System π")
|
12 |
+
st.write("This Computer-Based Tutorial (CBT) is designed for Class 6 students to learn about the digestive system in a fun and interactive way.")
|
13 |
|
14 |
# Sidebar
|
15 |
st.sidebar.header("Navigation")
|
|
|
20 |
st.header("Introduction")
|
21 |
st.write("The digestive system is a group of organs that work together to break down food into smaller parts so the body can use them for energy, growth, and repair.")
|
22 |
st.image("https://upload.wikimedia.org/wikipedia/commons/thumb/e/e5/Digestive_system_diagram_en.svg/1200px-Digestive_system_diagram_en.svg.png", caption="Diagram of the Digestive System")
|
23 |
+
st.balloons()
|
24 |
|
25 |
elif selected_section == "Organs of the Digestive System":
|
26 |
st.header("Organs of the Digestive System")
|
|
|
35 |
- **Pancreas**: Produces enzymes that help in digestion.
|
36 |
- **Rectum and Anus**: Store and eliminate waste.
|
37 |
""")
|
38 |
+
st.image("https://cdn.pixabay.com/photo/2017/07/25/13/01/intestine-2531936_960_720.png", caption="Illustration of Digestive Organs")
|
39 |
|
40 |
elif selected_section == "Process of Digestion":
|
41 |
st.header("Process of Digestion")
|
|
|
48 |
5. **Absorption**: Nutrients are absorbed into the bloodstream in the small intestine.
|
49 |
6. **Elimination**: Waste is eliminated through the rectum and anus.
|
50 |
""")
|
51 |
+
st.image("https://cdn.pixabay.com/photo/2017/07/25/13/01/digestive-2531937_960_720.png", caption="Step-by-step Digestive Process")
|
52 |
+
|
53 |
+
with st.spinner("Simulating digestion..."):
|
54 |
+
time.sleep(2)
|
55 |
+
st.success("Digestion process explained!")
|
56 |
|
57 |
elif selected_section == "Quiz":
|
58 |
+
st.header("π§ Quiz: Test Your Knowledge")
|
59 |
st.write("Answer the following questions to test your knowledge of the digestive system.")
|
60 |
|
61 |
# Question 1
|
|
|
64 |
("Mouth", "Stomach", "Small Intestine", "Large Intestine")
|
65 |
)
|
66 |
if question1 == "Small Intestine":
|
67 |
+
st.success("β
Correct! The small intestine absorbs nutrients from food.")
|
68 |
elif question1:
|
69 |
+
st.error("β Incorrect. The correct answer is 'Small Intestine'.")
|
70 |
|
71 |
# Question 2
|
72 |
question2 = st.radio(
|
|
|
74 |
("To digest proteins", "To help digest fats", "To break down carbohydrates", "To eliminate waste")
|
75 |
)
|
76 |
if question2 == "To help digest fats":
|
77 |
+
st.success("β
Correct! Bile helps in the digestion of fats.")
|
78 |
elif question2:
|
79 |
+
st.error("β Incorrect. The correct answer is 'To help digest fats'.")
|
80 |
|
81 |
# Question 3
|
82 |
question3 = st.radio(
|
|
|
84 |
("Liver", "Stomach", "Pancreas", "Esophagus")
|
85 |
)
|
86 |
if question3 == "Pancreas":
|
87 |
+
st.success("β
Correct! The pancreas produces enzymes that aid in digestion.")
|
88 |
elif question3:
|
89 |
+
st.error("β Incorrect. The correct answer is 'Pancreas'.")
|
90 |
|
91 |
+
st.write("π Keep learning and practicing! Great job!")
|
92 |
+
st.image("https://cdn.pixabay.com/photo/2016/06/15/15/44/school-1457364_960_720.png", caption="Well Done!")
|