Skip to content

Instantly share code, notes, and snippets.

@HarshSingh16
Created February 8, 2019 07:08
Show Gist options
  • Save HarshSingh16/2fc6f6787e9b46cbccc61a1bc83cf66c to your computer and use it in GitHub Desktop.
Save HarshSingh16/2fc6f6787e9b46cbccc61a1bc83cf66c to your computer and use it in GitHub Desktop.
#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