import streamlit as st st.title("Basic Science and General Knowledge Tutor") st.write("Welcome to your interactive learning experience!") # Add buttons for different topics if st.button("Science"): st.write("Let's learn about science!") # Add science-related content or questions here if st.button("General Knowledge"): st.write("Let's test your general knowledge!") # Add general knowledge content or questions here # You can add more buttons or interactive elements as needed