File size: 820 Bytes
1162aae
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import streamlit as st
st.set_page_config(layout="wide")
from streamlit_extras.switch_page_button import switch_page

st.markdown("""## *Dépannage*""")
st.markdown(""" """)

st.markdown("""
Dans ce chapitre, nous passons en revue des recommandations pratiques pour résoudre des difficultés concernant l'inférence, la reproductibilité et les problèmes mathématiques.""")

st.markdown(""" """)
st.markdown(""" """)
st.markdown(""" """)
col1, col2, col3= st.columns(3)
with col1:
    if st.button('Section précédente', use_container_width=True):
        switch_page("IV.6._Conseils et astuces")
with col2:
    if st.button("Accueil", use_container_width=True):
        switch_page("Home")
with col3:
    if st.button("Section suivante", use_container_width=True):
        switch_page("V.1._Dépanner l'inférence")