mbosse99 commited on
Commit
fd367c0
·
1 Parent(s): 898cf42

Added result txt handout

Browse files
Files changed (1) hide show
  1. app.py +9 -0
app.py CHANGED
@@ -99,6 +99,7 @@ def decrement_page():
99
  st.session_state["current_page"] -= 1
100
 
101
  def change_question_type():
 
102
  if st.session_state["question_type"] == "question":
103
  st.session_state["question_type"] = "coding_tasks"
104
  else:
@@ -226,3 +227,11 @@ for i, task in enumerate(st.session_state["tasks_for_interview"]):
226
  with interview_col_2:
227
  st.button("Remove", key="remove_button_tasks_"+str(i), on_click=st.session_state["tasks_for_interview"].remove, args=(task,))
228
  st.divider()
 
 
 
 
 
 
 
 
 
99
  st.session_state["current_page"] -= 1
100
 
101
  def change_question_type():
102
+ st.session_state["current_page"] = 1
103
  if st.session_state["question_type"] == "question":
104
  st.session_state["question_type"] = "coding_tasks"
105
  else:
 
227
  with interview_col_2:
228
  st.button("Remove", key="remove_button_tasks_"+str(i), on_click=st.session_state["tasks_for_interview"].remove, args=(task,))
229
  st.divider()
230
+ if len(st.session_state["questions_for_interview"]) > 0 and len(st.session_state["tasks_for_interview"]) > 0:
231
+ st.write("You can now save the questions and coding tasks for your interview.")
232
+ result_string = "Interview preparation:\n\n"
233
+ for i, question in enumerate(st.session_state["questions_for_interview"]):
234
+ result_string += f"Question {i+1}. :\n{question['question']}\n\nPerfect answer: {question['perfect_answer']}\n\nDifficulty: {question['difficulty']}\n\n\n"
235
+ for i, task in enumerate(st.session_state["tasks_for_interview"]):
236
+ result_string += f"Coding task {i+1}. :\n{task['task']}\n\nPerfect answer: {task['perfect_solution']}\n\n\n"
237
+ st.download_button(label="Download", data=result_string, file_name="interview_questions.txt", mime="text/plain")