Spaces:
Sleeping
Sleeping
Create app.py
Browse files
app.py
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
import streamlit as st
|
| 2 |
+
|
| 3 |
+
st.title("Basic Science and General Knowledge Tutor")
|
| 4 |
+
|
| 5 |
+
st.write("Welcome to your interactive learning experience!")
|
| 6 |
+
|
| 7 |
+
# Add buttons for different topics
|
| 8 |
+
if st.button("Science"):
|
| 9 |
+
st.write("Let's learn about science!")
|
| 10 |
+
# Add science-related content or questions here
|
| 11 |
+
|
| 12 |
+
if st.button("General Knowledge"):
|
| 13 |
+
st.write("Let's test your general knowledge!")
|
| 14 |
+
# Add general knowledge content or questions here
|
| 15 |
+
|
| 16 |
+
# You can add more buttons or interactive elements as needed
|