Update app.py
Browse files
app.py
CHANGED
@@ -31,7 +31,8 @@ def paginar_frame(df):
|
|
31 |
with cols[n_row%N_cards_per_row]:
|
32 |
if 'answer' in row:
|
33 |
if (row['answer']):
|
34 |
-
|
|
|
35 |
row['resumen']=remove_html_markup(row['resumen'])
|
36 |
row['resumen']=remove_URL(row['resumen'])
|
37 |
if (len(row['resumen'])>600):
|
|
|
31 |
with cols[n_row%N_cards_per_row]:
|
32 |
if 'answer' in row:
|
33 |
if (row['answer']):
|
34 |
+
t= row['answer'] + '(' + str(row['score']) + ')'
|
35 |
+
st.info(t)
|
36 |
row['resumen']=remove_html_markup(row['resumen'])
|
37 |
row['resumen']=remove_URL(row['resumen'])
|
38 |
if (len(row['resumen'])>600):
|