vinayakdev commited on
Commit
d530085
1 Parent(s): acd8864

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -5
app.py CHANGED
@@ -9,11 +9,12 @@ text_ar = st.text_area("Enter text:")
9
 
10
  if(st.button("Generate!")):
11
  text_ar = text_ar.replace("\n"," ").split('.')
12
- questions=[]
13
- for pairs in text_ar:
14
- questions.append(creator(text_ar))
15
- for pair in questions:
16
- st.text(pair)
 
17
 
18
 
19
 
 
9
 
10
  if(st.button("Generate!")):
11
  text_ar = text_ar.replace("\n"," ").split('.')
12
+ for text in text_ar:
13
+ lis = creator(text)
14
+ for item in lis:
15
+ st.write(item)
16
+
17
+
18
 
19
 
20