Ratnesh Tarakant Pasi
commited on
Update app.py
Browse files
app.py
CHANGED
@@ -1,6 +1,9 @@
|
|
|
|
|
|
|
|
1 |
import streamlit as st
|
2 |
|
3 |
st.set_page_config(page_title="Coding Questions App", layout="wide")
|
4 |
st.title("Welcome to the Coding Questions App!")
|
5 |
|
6 |
-
st.write("Use the sidebar to navigate between pages.")
|
|
|
1 |
+
import os
|
2 |
+
os.system("pip install pandas")
|
3 |
+
|
4 |
import streamlit as st
|
5 |
|
6 |
st.set_page_config(page_title="Coding Questions App", layout="wide")
|
7 |
st.title("Welcome to the Coding Questions App!")
|
8 |
|
9 |
+
st.write("Use the sidebar to navigate between pages.")
|