Tutorials / pages /11_A_Bite_Of_Maths.py
MrJShen's picture
update A bite of math (#2)
422eddd
raw
history blame contribute delete
581 Bytes
## Just A bit of Maths
import streamlit as st
import streamlit_book as stb
stb.set_book_config(
menu_title="A bite of Maths",
menu_icon="lightbulb",
options=[
"CH1: Learn from scratch",
"CH2: Learn graduately"
],
paths=[
"pages/pages/1_Learning_from_scratch.py",
"pages/pages/2_Learning_graduately.py"
],
)