Created
February 8, 2019 23:16
-
-
Save HarshSingh16/33b6dd64c4593514406615060abb01ea to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#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