Created
February 8, 2019 07:08
-
-
Save HarshSingh16/2fc6f6787e9b46cbccc61a1bc83cf66c 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
#Cleaning Questions | |
Clean_questions=[] | |
for question in Questions: | |
_question1=clean_text(question) | |
Clean_questions.append(_question1) | |
#Cleaning Answers | |
Clean_answers=[] | |
for answer in Answers: | |
_answer1=clean_text(answer) | |
Clean_answers.append(_answer1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment