Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 |
|