From 51059eed9814d2b7ccb3f597dd1208bb1465f19b Mon Sep 17 00:00:00 2001 From: Filipa Calado Date: Thu, 16 Jan 2020 23:09:03 -0500 Subject: [PATCH] fixing markdown formatting error --- sections/cleaning.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sections/cleaning.md b/sections/cleaning.md index 351667c..3a15ffb 100644 --- a/sections/cleaning.md +++ b/sections/cleaning.md @@ -229,14 +229,14 @@ b_words = ['god', 'apostle', 'angel'] Then we will loop through the words in our cleaned corpus, and see if any of them are in our list of biblical words. We'll then save into another list just those words that appear in both. - ```python +```python my_list = [] for word in b_words: if word in text1_clean: my_list.append(word) else: pass -``` +``` And then we will print the results.