ivyblossom commited on
Commit
77fa7fb
1 Parent(s): 297e758

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -40,7 +40,7 @@ def main():
40
  # Display the results as a table with a header row
41
  table_data = [["Question", "Answer", "Score"]]
42
  for i, (question, answer) in enumerate(zip(questions, answers)):
43
- table_data.append([f"{i + 1}: '{question}'", answer['answer'], f"{answer['score']:.2f}"])
44
 
45
  st.write("Questions and Answers:")
46
  st.table(table_data)
 
40
  # Display the results as a table with a header row
41
  table_data = [["Question", "Answer", "Score"]]
42
  for i, (question, answer) in enumerate(zip(questions, answers)):
43
+ table_data.append([{question}, answer['answer'], f"{answer['score']:.2f}"])
44
 
45
  st.write("Questions and Answers:")
46
  st.table(table_data)