Spaces:
Sleeping
Sleeping
File size: 456 Bytes
fe612fa |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 |
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.
""")
|