ppsingh commited on
Commit
14ff9c4
1 Parent(s): 46af628

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +4 -1
app.py CHANGED
@@ -1,4 +1,7 @@
1
  import streamlit as st
 
2
 
3
  title = st.text_input('Movie title', 'Life of Brian')
4
- st.write('The current movie title is', title)
 
 
 
1
  import streamlit as st
2
+ import pandas as pd
3
 
4
  title = st.text_input('Movie title', 'Life of Brian')
5
+ data = pd.read_csv("test.csv")
6
+ for line in data:
7
+ st.write(line)