Skip to content

Instantly share code, notes, and snippets.

@HarshSingh16
Created February 8, 2019 23:16
Show Gist options
  • Save HarshSingh16/33b6dd64c4593514406615060abb01ea to your computer and use it in GitHub Desktop.
Save HarshSingh16/33b6dd64c4593514406615060abb01ea to your computer and use it in GitHub Desktop.
#Sorting clean questions and answers by questions:
sorted_clean_questions=[]
sorted_clean_answers=[]
for i in range(1,25):
for question in enumerate(questions_int_sequence):
if len(question[1])==i:
sorted_clean_questions.append(questions_int_sequence[question[0]])
sorted_clean_answers.append(answers_int_sequence[question[0]])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment