louiecerv's picture
saved changes
fe612fa
raw
history blame contribute delete
456 Bytes
import streamlit as st
st.title("SQLite3 Interactive Lesson")
st.header("Welcome to the SQLite3 Tutorial")
st.markdown("""
### Objectives
- Learn the basics of SQLite3.
- Practice creating, modifying, and querying databases.
- Integrate SQLite3 with Python.
### Instructions
Navigate through the pages in the sidebar to complete each interactive task:
1. Create a Database and Tables.
2. Insert Data.
3. Query Data.
4. Update Data.
5. Delete Data.
""")