koushikvkr484 commited on
Commit
80c97bb
·
verified ·
1 Parent(s): 2a84175

Create app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py ADDED
@@ -0,0 +1,6 @@
 
 
 
 
 
 
 
1
+ import streamlit as st
2
+ st.title("Welcome to Machine Learning Notebook")
3
+
4
+ if st.button("Goto Introduction"):
5
+ st.switch_page("pages\introduction.py")
6
+