ppsingh commited on
Commit
c112768
·
1 Parent(s): dd3f3bf

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -2
app.py CHANGED
@@ -10,7 +10,6 @@ if st.button('Submit'):
10
  new_row = {'Sentences': title}
11
  data = data.append(new_row, ignore_index=True)
12
  st.write(data)
 
13
 
14
- for line in data:
15
- st.write(line)
16
 
 
10
  new_row = {'Sentences': title}
11
  data = data.append(new_row, ignore_index=True)
12
  st.write(data)
13
+ data.to_csv('./test.csv', index= False)
14
 
 
 
15