fadyabila's picture
Rename main.py with app.py
6e58182
raw
history blame contribute delete
No virus
201 Bytes
import streamlit as st
import eda
import prediction
navigation = st.sidebar.selectbox('Pilih Halaman : ', ('EDA', 'Project A Player'))
if navigation == 'EDA':
eda.run()
else:
prediction.run()