import streamlit as st import eda import prediction page = st.sidebar.selectbox('Choose Page: ', ('Credit Card Customer Information', 'Prediction')) if page == 'Credit Card Customer Information': eda.run() else: prediction.run()