ahmadluay's picture
fifa
fa71090
raw
history blame
228 Bytes
import streamlit as st
import eda # python file
import prediction # python file
navigation = st.sidebar.selectbox('Pilih Halaman: ',('EDA','Predict a Player'))
if navigation == 'EDA':
eda.run()
else:
prediction.run()