diff --git a/M1_Python/d4_Strings_and_files/Into to Python - part 6.ipynb b/M1_Python/d4_Strings_and_files/Into to Python - part 6.ipynb index 7cb6bc1..503dfa2 100644 --- a/M1_Python/d4_Strings_and_files/Into to Python - part 6.ipynb +++ b/M1_Python/d4_Strings_and_files/Into to Python - part 6.ipynb @@ -533,23 +533,13 @@ }, { "cell_type": "code", - "execution_count": 12, + "execution_count": 9, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "Aph t t\n" - ] - } - ], + "outputs": [], "source": [ "# String cleaning function\n", "def clean_string(string):\n", - " \n", - "\n", - "clean_string(\"Aph@t 100t\")" + " pass" ] }, { @@ -1016,21 +1006,35 @@ }, { "cell_type": "code", - "execution_count": 25, + "execution_count": 7, "metadata": {}, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "Never gonna give you up\n", - "Never gonna let you down\n", - "Never gonna run around and desert you\n" + "a string\n" ] } ], "source": [ - "# Distilling text.\n" + "# Distilling text.\n", + "text = \"[a]n example[ string]\"\n", + "\n", + "distilled = \"\"\n", + "inside = False\n", + "for c in text:\n", + " if c == \"[\":\n", + " inside = True\n", + " continue\n", + " if c == \"]\":\n", + " inside = False\n", + " continue\n", + " \n", + " if inside == True:\n", + " distilled += c\n", + " \n", + "print(distilled)" ] }, { @@ -1042,7 +1046,7 @@ }, { "cell_type": "code", - "execution_count": 26, + "execution_count": 8, "metadata": {}, "outputs": [ { @@ -1055,7 +1059,14 @@ } ], "source": [ - "# ROTR-13\n" + "# ROTR-13\n", + "import string \n", + "alphabet = string.ascii_uppercase\n", + "split_alphabet = alphabet[13:]+ alphabet[0:13]\n", + "\n", + "print(alphabet)\n", + "print(split_alphabet)\n", + "\n" ] }, { @@ -1067,36 +1078,7 @@ }, { "cell_type": "code", - "execution_count": 1, - "metadata": {}, - "outputs": [], - "source": [ - "text = \"\"\"How much wood would a woodchuck chuck\n", - "If a woodchuck could chuck wood?\n", - "He would chuck, he would, as much as he could,\n", - "And chuck as much as a woodchuck would\n", - "If a Mr. Smith could chuck wood\\n\\r\\t.\"\"\"\n", - "\n", - "# read whole text\n", - "# create a counter\n", - "# get rid \\n\n", - "# get rid of ?. special grammar\n", - "# lowercase my sentence\n", - "\"if a woodchuck could chuck wood\"\n", - "# split the string by some character\n", - "[\"if\", \"a\", \"woodchuck\"]\n", - "#check if wood is in the list\n", - " # if yes\n", - " # counter = counter +1 <--> counter += 1 \n", - " # else\n", - " #pass\n", - "#return\n", - " " - ] - }, - { - "cell_type": "code", - "execution_count": 13, + "execution_count": 15, "metadata": {}, "outputs": [ { @@ -1105,22 +1087,29 @@ "3" ] }, - "execution_count": 13, + "execution_count": 15, "metadata": {}, "output_type": "execute_result" } ], "source": [ - "# Counting wood.\n", - "def wood_counter(text):\n", - " text = text.replace(\"?\", \"\").replace(\".\",\"\").replace().replace\n", - " l = text.lower().strip().split()\n", - " counter = 0\n", - " for word in l:\n", - " if word == \"wood\":\n", - " counter +=1\n", - " return counter\n", - "wood_counter(text)" + "text = \"\"\"How much wood would a woodchuck chuck\n", + "If a woodchuck could chuck wood?\n", + "He would chuck, he would, as much as he could,\n", + "And chuck as much as a woodchuck would\n", + "If a Mr. Smith could chuck wood\\n\\r\\t.\"\"\"\n", + "\n", + "\n", + "def get_wood(text):\n", + " strip_qm = text.replace(\"?\", \"\")\n", + " get_words = [word.lower() for word in strip_qm.split() if word.isalnum()]\n", + " count_wood = 0 \n", + " for word in get_words:\n", + " if word == 'wood':\n", + " count_wood += 1\n", + " return count_wood\n", + "\n", + "get_wood(text)\n" ] }, { @@ -1559,7 +1548,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.8.3" + "version": "3.8.5" } }, "nbformat": 4, diff --git a/M1_Python/d4_Strings_and_files/Intro to Python - Additional Exercises.ipynb b/M1_Python/d4_Strings_and_files/Intro to Python - Additional Exercises.ipynb index 503e86a..8ba17b0 100644 --- a/M1_Python/d4_Strings_and_files/Intro to Python - Additional Exercises.ipynb +++ b/M1_Python/d4_Strings_and_files/Intro to Python - Additional Exercises.ipynb @@ -11,11 +11,66 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 35, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "17" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ - "# Your Code Here" + "# Your Code Here\n", + "\n", + "### a given amount in cents\n", + "\n", + "\n", + "def get_least_coins(cents, want_purse=False):\n", + " purse = {\n", + " 'dollars': 0,\n", + " 'quarters': 0,\n", + " 'dimes': 0,\n", + " 'nickels': 0,\n", + " 'pennies': 0,\n", + " }\n", + " purse[\"dollars\"] = cents // 100\n", + " total_cents = cents % 100\n", + "\n", + " while total_cents !=0:\n", + " if total_cents-25 >= 0:\n", + " total_cents -= 25\n", + " purse['quarters'] += 1\n", + " continue\n", + " elif total_cents-10 >=0:\n", + " total_cents -=10\n", + " purse['dimes'] += 1\n", + " continue\n", + " elif total_cents-5 >=0:\n", + " total_cents -=5\n", + " purse['nickels'] += 1\n", + " continue\n", + " else:\n", + " purse['pennies'] = total_cents\n", + " total_cents = 0\n", + " \n", + " total_coins = sum(purse.values()) \n", + " if want_purse == True:\n", + " return (total_coins, purse)\n", + " else:\n", + " return total_coins\n", + "\n", + "### Just see the required total coins\n", + "get_least_coins(1097)\n", + " \n", + " \n", + "### See the purse also\n", + "#get_least_coins(1402397, True)\n" ] }, { @@ -27,15 +82,26 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 14, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "120\n" + ] + } + ], "source": [ "# Factorial\n", "def factorial(number): \n", - "\n", " #Your Code Here\n", - "\n", + " factors = [i for i in range(1, number+1)]\n", + " payload = 1\n", + " while len(factors) >1:\n", + " payload *= factors.pop()\n", + " return payload\n", "print(factorial(5))" ] }, @@ -56,16 +122,81 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 43, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " * | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25\n", + "---------------------------------------------------------------------------------------------------------\n", + " 1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25\n", + " 2 | 2 4 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40 42 44 46 48 50\n", + " 3 | 3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 63 66 69 72 75\n", + " 4 | 4 8 12 16 20 24 28 32 36 40 44 48 52 56 60 64 68 72 76 80 84 88 92 96 100\n", + " 5 | 5 10 15 20 25 30 35 40 45 50 55 60 65 70 75 80 85 90 95 100 105 110 115 120 125\n", + " 6 | 6 12 18 24 30 36 42 48 54 60 66 72 78 84 90 96 102 108 114 120 126 132 138 144 150\n", + " 7 | 7 14 21 28 35 42 49 56 63 70 77 84 91 98 105 112 119 126 133 140 147 154 161 168 175\n", + " 8 | 8 16 24 32 40 48 56 64 72 80 88 96 104 112 120 128 136 144 152 160 168 176 184 192 200\n", + " 9 | 9 18 27 36 45 54 63 72 81 90 99 108 117 126 135 144 153 162 171 180 189 198 207 216 225\n", + " 10 | 10 20 30 40 50 60 70 80 90 100 110 120 130 140 150 160 170 180 190 200 210 220 230 240 250\n", + " 11 | 11 22 33 44 55 66 77 88 99 110 121 132 143 154 165 176 187 198 209 220 231 242 253 264 275\n", + " 12 | 12 24 36 48 60 72 84 96 108 120 132 144 156 168 180 192 204 216 228 240 252 264 276 288 300\n", + " 13 | 13 26 39 52 65 78 91 104 117 130 143 156 169 182 195 208 221 234 247 260 273 286 299 312 325\n", + " 14 | 14 28 42 56 70 84 98 112 126 140 154 168 182 196 210 224 238 252 266 280 294 308 322 336 350\n", + " 15 | 15 30 45 60 75 90 105 120 135 150 165 180 195 210 225 240 255 270 285 300 315 330 345 360 375\n", + " 16 | 16 32 48 64 80 96 112 128 144 160 176 192 208 224 240 256 272 288 304 320 336 352 368 384 400\n", + " 17 | 17 34 51 68 85 102 119 136 153 170 187 204 221 238 255 272 289 306 323 340 357 374 391 408 425\n", + " 18 | 18 36 54 72 90 108 126 144 162 180 198 216 234 252 270 288 306 324 342 360 378 396 414 432 450\n", + " 19 | 19 38 57 76 95 114 133 152 171 190 209 228 247 266 285 304 323 342 361 380 399 418 437 456 475\n", + " 20 | 20 40 60 80 100 120 140 160 180 200 220 240 260 280 300 320 340 360 380 400 420 440 460 480 500\n", + " 21 | 21 42 63 84 105 126 147 168 189 210 231 252 273 294 315 336 357 378 399 420 441 462 483 504 525\n", + " 22 | 22 44 66 88 110 132 154 176 198 220 242 264 286 308 330 352 374 396 418 440 462 484 506 528 550\n", + " 23 | 23 46 69 92 115 138 161 184 207 230 253 276 299 322 345 368 391 414 437 460 483 506 529 552 575\n", + " 24 | 24 48 72 96 120 144 168 192 216 240 264 288 312 336 360 384 408 432 456 480 504 528 552 576 600\n", + " 25 | 25 50 75 100 125 150 175 200 225 250 275 300 325 350 375 400 425 450 475 500 525 550 575 600 625\n" + ] + } + ], "source": [ "# Print multiplication table\n", "def print_multiplication_table(n):\n", " \n", - " #Your Code Here\n", + " # fines the maximum length of a product for formatting\n", + " spc = len(str(n*n))\n", + " \n", + " # Create the labels \n", + " axes_label = \" \".join([sfill(str(i), spc) for i in range(1, n+1)])\n", + " divider = \"\".join([\"-\" for i in range(len(axes_label))])\n", + " \n", + " # Creates the products \n", + " multi_table = [[y*x for x in range(1, n+1)] for y in range(1, n+1)]\n", + " multi = sfill(\"*\", spc)\n", + " \n", + " # Formats the multiplication tables. \n", + " print(f\"{multi} | {axes_label}\")\n", + " print(f\"------{divider}\")\n", + " for i, line in enumerate(multi_table, 1):\n", + " format_line = \" \".join([sfill(str(p), spc) for p in line])\n", + " print(f\"{sfill(str(i), spc)} | {format_line}\")\n", + " \n", + "# Creates leading white space to handle different number length formatting\n", + "def sfill(string, length, fillwith=None):\n", + " filler = \" \"\n", + " if fillwith:\n", + " filler = fillwith\n", + " if len(str(string)) < length:\n", + " difference = length - int(len(str(string)))\n", + " fill = filler*difference\n", + " a = f\"{fill}{string}\"\n", + " return a\n", + " else:\n", + " return string\n", " \n", - "print_multiplication_table(3)" + "\n", + " \n", + "print_multiplication_table(25)" ] }, { @@ -77,16 +208,95 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 56, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " * | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 \n", + "--------------------------------------------------------------------------------------\n", + " 1 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 \n", + " 2 | 2 4 6 8 10 12 14 16 18 20 22 24 26 28 30 32 34 36 38 40 \n", + " 3 | 3 6 9 12 15 18 21 24 27 30 33 36 39 42 45 48 51 54 57 60 \n", + " 4 | 4 8 12 16 20 24 28 32 36 40 44 48 52 56 60 64 68 72 76 80 \n", + " 5 | 5 10 15 20 25 30 35 40 45 50 55 60 65 70 75 80 85 90 95 100 \n", + " 6 | 6 12 18 24 30 36 42 48 54 60 66 72 78 84 90 96 102 108 114 120 \n", + " 7 | 7 14 21 28 35 42 49 56 63 70 77 84 91 98 105 112 119 126 133 140 \n", + " 8 | 8 16 24 32 40 48 56 64 72 80 88 96 104 112 120 128 136 144 152 160 \n", + " 9 | 9 18 27 36 45 54 63 72 81 90 99 108 117 126 135 144 153 162 171 180 \n", + " 10 | 10 20 30 40 50 60 70 80 90 100 110 120 130 140 150 160 170 180 190 200 \n", + " 11 | 11 22 33 44 55 66 77 88 99 110 121 132 143 154 165 176 187 198 209 220 \n", + " 12 | 12 24 36 48 60 72 84 96 108 120 132 144 156 168 180 192 204 216 228 240 \n", + " 13 | 13 26 39 52 65 78 91 104 117 130 143 156 169 182 195 208 221 234 247 260 \n", + " 14 | 14 28 42 56 70 84 98 112 126 140 154 168 182 196 210 224 238 252 266 280 \n", + " 15 | 15 30 45 60 75 90 105 120 135 150 165 180 195 210 225 240 255 270 285 300 \n", + " 16 | 16 32 48 64 80 96 112 128 144 160 176 192 208 224 240 256 272 288 304 320 \n", + " 17 | 17 34 51 68 85 102 119 136 153 170 187 204 221 238 255 272 289 306 323 340 \n", + " 18 | 18 36 54 72 90 108 126 144 162 180 198 216 234 252 270 288 306 324 342 360 \n", + " 19 | 19 38 57 76 95 114 133 152 171 190 209 228 247 266 285 304 323 342 361 380 \n", + " 20 | 20 40 60 80 100 120 140 160 180 200 220 240 260 280 300 320 340 360 380 400 \n", + "None\n" + ] + } + ], "source": [ "# Print multiplication table\n", "def print_multiplication_table(n):\n", + " # Generate a list of all the products\n", + " products = generate_products(n)\n", " \n", - " #Your Code Here\n", - "\n", - "print_multiplication_table(5)" + " # Used to generate each axes label values\n", + " tick = 1\n", + " \n", + " #Calculate how much white space to add on infront of numbers \n", + " spc = int(len(str(n*n)))\n", + " \n", + " # Starting point for the x-axis labels\n", + " xlabel = sfill(\"*\", spc) + \" | \" \n", + " \n", + " # holds each line of the print statement which are generated with the following loops\n", + " to_print = []\n", + " \n", + " # Generate the print statements for each product\n", + " while len(products) > 0:\n", + " current = products.pop(0)\n", + " print_string = sfill(str(ylabel), spc) + \" | \"\n", + " while len(current) > 0:\n", + " print_string += sfill(str(current.pop(0)), spc) + \" \"\n", + " xlabel += sfill(str(tick), spc) + \" \"\n", + " to_print.append(print_string)\n", + " tick += 1\n", + " \n", + " \n", + " # Do the final print\n", + " print(xlabel)\n", + " print(\"-\"*len(xlabel))\n", + " while to_print:\n", + " print(to_print.pop(0))\n", + " \n", + " \n", + "# Creates a list containing lists of each numbers products\n", + "def generate_products(n):\n", + " current = 1\n", + " all_products = []\n", + " while current <= n:\n", + " factor = 1\n", + " current_products = []\n", + " while factor <= n:\n", + " current_products.append(factor*current)\n", + " factor += 1\n", + " all_products.append(current_products)\n", + " current += 1\n", + " \n", + " \n", + " return all_products\n", + " \n", + " \n", + " \n", + " \n", + "print(print_multiplication_table(20))" ] }, { @@ -105,13 +315,90 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": 26, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "As it turned out our chance meeting with Reverend Arthur Belling was to change our whole way of life, and every Sunday we'd hurry along to St Loony up the Cream Bun and Jam.\n" + ] + } + ], "source": [ "# Autocorrect.\n", "sentence = \"as it turned out our chance meeting with REverend aRTHUR BElling was \\\n", - "was to change our whole way of life, and every sunday we'd hurry along to St lOONY up the Cream BUn and Jam.\"\n" + "was to change our whole way of life, and every sunday we'd hurry along to St lOONY up the Cream BUn and Jam.\"\n", + "\n", + "\n", + "def spell_check(text):\n", + " correct_multi_case = check_multi_uppsercase(text)\n", + " correct_duplicates = check_duplicates(correct_multi_case)\n", + " correct_start_upper = check_start_uppercase(correct_duplicates)\n", + " correct_reverse_case = check_reverse_case(correct_start_upper)\n", + " correct_day_case = check_day_case(correct_reverse_case)\n", + " return correct_day_case\n", + "\n", + "\n", + "def check_multi_uppsercase(words):\n", + " corrected = []\n", + " for word in words.split(\" \"):\n", + " if len(word)>2:\n", + " if word[0].isupper() and word[1].isupper() and word[2].islower():\n", + " corrected.append(word.capitalize())\n", + " else:\n", + " corrected.append(word)\n", + " else:\n", + " corrected.append(word)\n", + "\n", + " return \" \".join(corrected)\n", + " \n", + "def check_duplicates(words):\n", + " corrected = []\n", + " split_sentence = words.split(\" \")\n", + " for i in range(len(split_sentence)-1):\n", + " if split_sentence[i] != split_sentence[i+1]:\n", + " corrected.append(split_sentence[i])\n", + " corrected.append(split_sentence[-1]) \n", + "\n", + " return \" \".join(corrected)\n", + "\n", + "def check_start_uppercase(words):\n", + " corrected =[]\n", + " sentence_end = True\n", + " for letter in words:\n", + " if letter.islower() and sentence_end and letter.isalnum():\n", + " corrected.append(letter.upper())\n", + " sentence_end = False\n", + " elif letter ==\".\":\n", + " sentence_end = True\n", + " corrected.append(letter)\n", + " else:\n", + " corrected.append(letter)\n", + " return \"\".join(corrected)\n", + "\n", + "def check_reverse_case(words):\n", + " corrected = []\n", + " for word in words.split(\" \"):\n", + " if word[0].islower() and word[1:].isupper():\n", + " corrected.append(word.capitalize())\n", + " else:\n", + " corrected.append(word)\n", + " return \" \".join(corrected)\n", + "\n", + "def check_day_case(words):\n", + " corrected = []\n", + " week_days = [\"Monday\",\"Tuesday\",\"Wednesday\",\"Thursday\",\"Friday\",\"Saturday\",\"Sunday\"]\n", + " for word in words.split(\" \"):\n", + " if word.capitalize() in week_days:\n", + " corrected.append(word.capitalize())\n", + " else:\n", + " corrected.append(word)\n", + " return \" \".join(corrected)\n", + "\n", + "print(spell_check(sentence))\n", + " \n" ] }, { @@ -124,12 +411,75 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 37, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "With vowels the file size is: 37870\n", + "\n", + "Without vowels the file size is:24636\n", + "\n", + "[Pms by Wllm Blk 1789]\n", + "\n", + "\n", + "\n", + "Y cn d ths\n", + "\n", + "\n", + "\n", + "\n", + "\n", + "SNGS F NNCNC ND F XPRNC\n", + "\n", + "nd TH BK f THL\n", + "\n", + "\n", + "\n", + "\n", + "\n", + " SNGS F NNCNC\n", + "\n" + ] + } + ], "source": [ - "## Your Code Here" + "## Your Code Here\n", + "from os.path import getsize\n", + "\n", + "rfile = open('text-files/blakepoems.txt', 'r')\n", + "wfile = open('text-files/blkpms.txt', 'w')\n", + "buffer = rfile.readlines()\n", + "for line in buffer:\n", + " write_line = \"\"\n", + " for char in line:\n", + " if char.lower() not in \"ioaue\":\n", + " write_line += char\n", + " wfile.write(write_line)\n", + " \n", + "print(f\"With vowels the file size is: {getsize('text-files/blakepoems.txt')}\\n\")\n", + "print(f\"Without vowels the file size is: {getsize('text-files/blkpms.txt')}\\n\")\n", + "rfile.close()\n", + "wfile.close()\n", + "\n", + "# proof print\n", + "with open('text-files/blkpms.txt', 'r') as fp:\n", + " buffer = fp.readlines()\n", + " for i in range(10):\n", + " print(buffer[i])\n", + "\n", + " \n", + " " ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { @@ -148,7 +498,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.4" + "version": "3.8.5" } }, "nbformat": 4, diff --git a/M1_Python/d4_Strings_and_files/Intro to Python - part 7.ipynb b/M1_Python/d4_Strings_and_files/Intro to Python - part 7.ipynb index 11aeaf0..6f0f464 100644 --- a/M1_Python/d4_Strings_and_files/Intro to Python - part 7.ipynb +++ b/M1_Python/d4_Strings_and_files/Intro to Python - part 7.ipynb @@ -1844,25 +1844,20 @@ }, { "cell_type": "code", - "execution_count": 31, + "execution_count": 1, "metadata": {}, "outputs": [ { - "name": "stdout", - "output_type": "stream", - "text": [ - " 0 1 2 3 4 5 6 7 8 9 A B C D E F\n", - "A   ¡ ¢ £ ¤ ¥ ¦ § ¨ © ª « ¬ ­ ® ¯\n", - "B ° ± ² ³ ´ µ ¶ · ¸ ¹ º » ¼ ½ ¾ ¿\n", - "C À Á Â Ã Ä Å Æ Ç È É Ê Ë Ì Í Î Ï\n", - "D Ð Ñ Ò Ó Ô Õ Ö × Ø Ù Ú Û Ü Ý Þ ß\n", - "E à á â ã ä å æ ç è é ê ë ì í î ï\n", - "F ð ñ ò ó ô õ ö ÷ ø ù ú û ü ý þ ÿ\n" + "ename": "IndentationError", + "evalue": "unexpected indent (, line 4)", + "output_type": "error", + "traceback": [ + "\u001b[0;36m File \u001b[0;32m\"\"\u001b[0;36m, line \u001b[0;32m4\u001b[0m\n\u001b[0;31m 0 1 2 3 4 5 6 7 8 9 A B C D E F\u001b[0m\n\u001b[0m ^\u001b[0m\n\u001b[0;31mIndentationError\u001b[0m\u001b[0;31m:\u001b[0m unexpected indent\n" ] } ], "source": [ - "#Your Code Here" + "\n" ] }, { @@ -1925,21 +1920,1595 @@ }, { "cell_type": "code", - "execution_count": 32, - "metadata": {}, + "execution_count": 17, + "metadata": { + "scrolled": true + }, "outputs": [ { "name": "stdout", "output_type": "stream", "text": [ - "{'[poems': 1, 'by': 23, 'william': 2, 'blake': 3, '1789]': 1, 'songs': 7, 'of': 146, 'innocence': 3, 'and': 344, 'experience': 3, 'the': 439, 'book': 6, 'thel': 15, 'introduction': 2, 'piping': 3, 'down': 20, 'valleys': 4, 'wild': 9, 'pleasant': 5, 'glee': 1, 'on': 44, 'a': 126, 'cloud': 15, 'i': 122, 'saw': 7, 'child': 17, 'he': 52, 'laughing': 5, 'said': 7, 'to': 111, 'me': 31, '\"pipe': 1, 'song': 10, 'about': 1, 'lamb!\"': 1, 'so': 21, 'piped': 2, 'with': 66, 'merry': 9, 'cheer': 1, '\"piper': 2, 'pipe': 2, 'that': 39, 'again;\"': 1, 'wept': 9, 'hear': 16, '\"drop': 1, 'thy': 31, 'happy': 19, 'pipe;': 1, 'sing': 11, 'cheer:!\"': 1, 'sang': 2, 'same': 1, 'again': 1, 'while': 13, 'joy': 24, 'sit': 12, 'thee': 41, 'write': 1, 'in': 141, 'all': 39, 'may': 6, 'read.\"': 1, \"vanish'd\": 1, 'from': 32, 'my': 83, 'sight;': 1, \"pluck'd\": 1, 'hollow': 3, 'reed': 1, 'made': 6, 'rural': 1, 'pen': 1, \"stain'd\": 1, 'water': 3, 'clear': 1, 'wrote': 1, 'every': 17, 'shepherd': 2, 'how': 14, 'sweet': 27, 'is': 52, \"shepherd's\": 1, 'lot': 2, 'morn': 8, 'evening': 5, 'stays;': 1, 'shall': 19, 'follow': 2, 'his': 57, 'sheep': 3, 'day': 18, 'tongue': 4, 'be': 24, 'filled': 6, 'praise': 2, 'for': 31, 'hears': 4, \"lambs'\": 1, 'innocent': 4, 'call': 4, \"ewes'\": 1, 'tender': 9, 'reply;': 1, 'watching': 1, 'they': 43, 'are': 25, 'peace': 9, 'know': 10, 'when': 28, 'their': 34, 'nigh': 2, 'echoing': 3, 'green': 15, 'sun': 10, 'does': 17, 'arise': 7, 'make': 5, 'skies;': 1, 'bells': 1, 'ring': 1, 'welcome': 4, 'spring;': 2, 'skylark': 2, 'thrush': 1, 'birds': 10, 'bush': 1, 'louder': 1, 'around': 5, \"bells'\": 1, 'cheerful': 1, 'sound;': 1, 'our': 22, 'sports': 2, 'seen': 5, 'old': 5, 'john': 1, 'white': 12, 'hair': 4, 'laugh': 6, 'away': 22, 'care': 10, 'sitting': 2, 'under': 4, 'oak': 1, 'among': 8, 'folk': 1, 'at': 7, 'play': 8, 'soon': 5, 'say': 6, '\"such': 1, 'such': 5, 'were': 10, 'joys': 3, 'we': 14, '--': 9, 'girls': 2, 'boys': 2, 'youth-time': 1, 'green.\"': 1, 'till': 15, 'little': 45, 'ones': 3, 'weary': 5, 'no': 17, 'more': 8, 'can': 26, 'descend': 2, 'have': 17, 'an': 21, 'end': 2, 'round': 9, 'laps': 1, 'mothers': 2, 'many': 7, 'sisters': 1, 'brothers': 2, 'like': 35, 'nest': 4, 'ready': 2, 'rest': 3, 'sport': 2, 'darkening': 1, 'lamb': 13, 'who': 18, 'dost': 5, 'thou': 34, 'gave': 3, 'life': 7, 'bid': 1, 'feed': 4, 'stream': 2, \"o'er\": 12, 'mead;': 1, 'clothing': 2, 'delight': 14, 'softest': 2, 'wolly': 1, 'bright;': 3, 'voice': 16, 'making': 2, 'vales': 9, 'rejoice': 2, \"i'll\": 4, 'tell': 6, 'thee;': 1, 'called': 2, 'name': 3, 'calls': 2, 'himself': 1, 'meek': 1, 'mild': 7, 'became': 2, 'god': 11, 'bless': 3, 'black': 8, 'boy': 11, 'mother': 17, 'bore': 6, 'southern': 2, 'am': 15, 'but': 38, 'oh': 10, 'soul': 2, 'as': 16, 'angel': 8, 'english': 2, 'if': 16, 'bereaved': 1, 'light': 11, 'taught': 2, 'underneath': 3, 'tree': 6, 'before': 6, 'heat': 5, 'she': 15, 'took': 2, 'her': 34, 'lap': 1, 'kissed': 3, 'pointed': 1, 'east': 1, 'began': 3, '\"look': 1, 'rising': 4, 'there': 11, 'live': 6, 'gives': 4, 'flowers': 9, 'trees': 1, 'beasts': 2, 'men': 4, 'receive': 2, 'comfort': 1, 'morning': 10, 'noonday': 1, '\"and': 4, 'put': 2, 'earth': 9, 'space': 1, 'learn': 1, 'bear': 5, 'beams': 3, 'love': 27, 'these': 6, 'bodies': 1, 'this': 15, 'sunburnt': 1, 'face': 9, 'shady': 1, 'grove': 3, '\"for': 1, 'souls': 2, \"learn'd\": 1, 'will': 3, 'vanish': 3, 'saying': 3, \"'come\": 1, 'out': 5, 'golden': 8, 'tent': 3, 'lambs': 4, 'rejoice\\',\"': 1, 'thus': 4, 'did': 12, 'me;': 1, 'free': 5, 'shade': 6, 'him': 11, 'lean': 1, 'upon': 14, \"father's\": 2, 'knee;': 1, 'then': 29, 'stand': 2, 'stroke': 1, 'silver': 3, 'blossom': 4, 'sparrow': 1, 'leaves': 2, 'sees': 1, 'you': 8, 'swift': 1, 'arrow': 1, 'seek': 6, 'your': 11, 'cradle': 2, 'narrow': 1, 'near': 6, 'bosom': 4, 'pretty': 8, 'robin': 2, 'sobbing': 2, 'chimney-sweeper': 1, 'died': 1, 'was': 30, 'very': 3, 'young': 1, 'father': 19, 'sold': 1, 'yet': 5, 'could': 6, 'scarcely': 1, 'cry': 7, '\"weep': 3, 'weep': 18, 'weep!\"': 2, 'chimneys': 1, 'sweep': 1, 'soot': 2, 'sleep': 19, \"there's\": 1, 'tom': 6, 'dacre': 1, 'cried': 1, 'head': 13, 'curled': 1, \"lamb's\": 1, 'back': 3, 'shaved;': 1, '\"hush': 1, 'never': 17, 'mind': 4, 'it': 27, \"head's\": 1, 'bare': 2, 'cannot': 6, 'spoil': 1, 'hair.\"': 1, 'quiet': 1, 'night': 27, 'a-sleeping': 1, 'had': 7, 'sight': 1, 'thousands': 2, 'sweepers': 1, 'dick': 1, 'joe': 1, 'ned': 1, 'jack': 1, 'them': 8, 'locked': 1, 'up': 6, 'coffins': 2, 'came': 8, 'bright': 12, 'key': 1, 'opened': 1, 'let': 7, 'free;': 1, 'plain': 1, 'leaping': 1, 'run': 1, 'wash': 1, 'river': 3, 'shine': 5, 'naked': 5, 'bags': 2, 'left': 1, 'behind': 1, 'rise': 4, 'clouds': 3, 'wind;': 1, 'told': 5, \"he'd\": 2, 'good': 1, 'want': 2, 'awoke': 1, 'rose': 9, 'dark': 7, 'got': 1, 'brushes': 1, 'work': 3, 'though': 2, 'cold': 6, 'warm': 2, 'do': 8, 'duty': 1, 'need': 1, 'not': 36, 'fear': 11, 'harm': 2, 'lost': 6, '\"father': 1, 'where': 24, 'going': 1, 'walk': 3, 'fast': 1, 'speak': 4, 'or': 21, 'else': 2, 'lost.\"': 1, 'wet': 1, 'dew;': 2, 'mire': 1, 'deep': 9, 'vapour': 1, 'flew': 2, 'found': 3, 'lonely': 3, 'fen': 1, 'led': 6, 'wandering': 1, 'ever': 4, 'appeared': 1, 'hand': 9, 'brought': 1, 'sorrow': 9, 'pale': 5, 'through': 7, 'dale': 3, 'weeping': 14, 'sought': 3, 'woods': 1, 'dimpling': 1, 'runs': 2, 'by;': 1, 'air': 6, 'wit': 1, 'hill': 2, 'laughs': 2, 'noise': 1, 'it;': 1, 'meadows': 1, 'lively': 1, 'grasshopper': 1, 'scene': 1, 'mary': 1, 'susan': 1, 'emily': 1, 'mouths': 1, '\"ha': 2, 'ha': 2, 'he!\"': 2, 'painted': 1, 'table': 1, 'cherries': 1, 'nuts': 1, 'spread': 1, 'come': 10, 'join': 1, 'chorus': 1, 'dreams': 3, 'form': 8, 'lovely': 4, \"infant's\": 4, 'streams': 1, 'silent': 8, 'moony': 1, 'soft': 5, 'weave': 2, 'brows': 1, 'infant': 12, 'crown': 3, 'hover': 3, 'smiles': 10, 'over': 8, \"mother's\": 2, 'smile': 8, 'livelong': 2, 'beguile': 2, 'moans': 3, 'dovelike': 2, 'sighs': 2, 'chase': 1, 'slumber': 1, 'thine': 2, 'eyes': 8, 'moan': 3, 'sweeter': 1, 'creation': 1, 'slept': 1, 'smiled': 2, 'doth': 7, 'babe': 2, 'holy': 13, 'image': 7, 'trace;': 1, 'once': 4, 'maker': 4, 'lay': 9, 'small': 5, 'see': 16, 'heavenly': 1, 'small;': 2, 'own': 4, 'smiles;': 1, 'heaven': 7, 'beguiles': 1, 'divine': 5, 'mercy': 8, 'pity': 9, 'pray': 3, 'distress': 2, 'virtues': 1, 'return': 4, 'thankfulness': 1, 'dear;': 1, 'man': 6, 'has': 5, 'human': 16, 'heart': 9, 'face;': 3, 'divine;': 1, 'dress': 4, 'clime': 3, 'prays': 2, 'must': 3, 'heathen': 1, 'turk': 1, 'jew': 1, 'dwell': 3, 'dwelling': 1, 'too': 3, 'thursday': 3, \"'twas\": 1, 'faces': 1, 'clean': 1, 'children': 12, 'walking': 3, 'two': 4, 'read': 1, 'blue': 1, 'grey-headed': 1, 'beadles': 1, 'walked': 2, 'wands': 1, 'snow': 4, 'into': 5, 'high': 3, 'dome': 1, \"paul's\": 1, 'thames': 2, 'waters': 2, 'flow': 3, 'what': 25, 'multitude': 1, 'seemed': 1, 'london': 2, 'town': 1, 'seated': 1, 'companies': 1, 'radiance': 1, 'hum': 1, 'multitudes': 2, 'raising': 1, 'hands': 3, 'now': 7, 'mighty': 1, 'raise': 1, 'harmonious': 1, 'thunderings': 1, 'seats': 1, 'beneath': 2, 'aged': 1, 'wise': 1, 'guardians': 1, 'poor': 4, 'cherish': 2, 'lest': 1, 'drive': 2, 'door': 1, 'descending': 2, 'west': 1, 'star': 1, 'shine;': 1, 'mine': 2, 'moon': 2, 'flower': 5, \"heaven's\": 3, 'bower': 2, 'sits': 2, 'farewell': 1, 'fields': 2, 'flocks': 2, \"ta'en\": 1, 'nibbled': 1, 'move': 1, 'feet': 5, 'angels': 2, 'unseen': 2, 'pour': 2, 'blessing': 2, 'without': 2, 'ceasing': 1, 'each': 5, 'bud': 1, 'sleeping': 5, 'look': 4, 'thoughtless': 2, 'covered': 3, 'warm;': 1, 'visit': 1, 'caves': 2, 'beast': 1, 'keep': 3, 'any': 3, 'should': 6, 'been': 2, 'bed': 7, 'wolves': 1, 'tigers': 3, 'howl': 2, 'prey': 2, 'pitying': 5, 'weep;': 1, 'seeking': 2, 'thirst': 1, 'rush': 1, 'dreadful': 1, 'most': 3, 'heedful': 1, 'spirit': 2, 'new': 1, 'worlds': 1, 'inherit': 1, \"lion's\": 2, 'ruddy': 2, 'tears': 11, 'gold': 6, 'cries': 1, 'fold': 1, '\"wrath': 1, 'meekness': 1, 'health': 1, 'sickness': 1, 'driven': 2, 'immortal': 3, 'beside': 4, 'bleating': 1, 'lie': 2, 'think': 4, 'graze': 1, 'after': 2, 'washed': 1, \"life's\": 1, 'mane': 3, 'guard': 1, 'fold.\"': 1, 'spring': 6, 'sound': 1, 'flute': 1, \"it's\": 1, 'mute': 1, \"bird's\": 2, 'nightingale': 1, 'lark': 1, 'sky,--': 1, 'merrily': 7, 'year': 5, 'full': 1, 'joy;': 1, 'girl': 4, 'cock': 1, 'crow': 1, 'you;': 1, 'noise;': 1, 'here': 2, 'am;': 1, 'lick': 2, 'neck;': 1, 'pull': 1, 'wool;': 1, 'kiss': 2, \"nurse's\": 2, 'voices': 3, 'heard': 11, 'within': 1, 'breast': 5, 'everything': 1, 'still': 1, '\"then': 1, 'home': 3, 'gone': 6, 'dews': 2, 'arise;': 2, 'leave': 2, 'off': 1, 'us': 5, 'appears': 1, 'skies.\"': 1, '\"no': 1, 'go': 8, 'sleep;': 2, 'besides': 2, 'sky': 2, 'fly': 7, 'hills': 2, 'sheep.\"': 1, '\"well': 1, 'well': 1, 'fades': 3, 'bed.\"': 1, 'leaped': 1, 'shouted': 1, 'laughed': 1, 'echoed': 1, '\"i': 3, 'name;': 1, 'days': 4, 'old.\"': 1, 'name.\"': 1, 'befall': 2, 'while;': 1, 'dream': 4, 'angel-guarded': 1, 'emmet': 1, 'its': 14, 'way': 2, 'grass': 7, 'methought': 1, 'troubled': 1, 'wildered': 1, 'forlorn': 1, 'benighted': 1, 'travel-worn': 1, 'tangle': 1, 'spray': 1, 'heart-broke': 1, '\"oh': 1, 'sigh': 5, 'abroad': 1, 'me.\"': 1, 'dropped': 1, 'tear': 6, 'glow-worm': 1, 'replied': 1, '\"what': 1, 'wailing': 1, 'wight': 1, 'watchman': 1, 'set': 2, 'ground': 5, 'beetle': 1, 'goes': 1, \"beetle's\": 1, 'hum;': 1, 'wanderer': 1, 'hie': 1, 'home!\"': 1, \"another's\": 4, 'woe': 7, 'grief': 4, 'kind': 1, 'relief': 1, 'falling': 1, 'feel': 3, \"sorrow's\": 1, 'share': 1, 'nor': 15, 'groan': 1, 'wren': 1, 'sorrows': 2, 'woes': 1, 'infants': 3, 'next': 1, 'pouring': 1, 'both': 6, 'wiping': 2, 'give': 3, 'becomes': 2, 'canst': 2, 'destroy': 3, 'fled': 5, 'bard': 2, 'present': 1, 'past': 1, 'future': 2, 'sees;': 1, 'whose': 1, 'ears': 2, 'word': 1, 'ancient': 3, 'tree;': 3, 'calling': 1, 'lapsed': 1, 'might': 2, 'control': 1, 'starry': 3, 'pole': 1, 'fallen': 3, 'renew': 2, '\"o': 1, 'o': 12, 'dewy': 3, 'worn': 2, 'rises': 1, 'slumbrous': 1, 'mass': 1, '\"turn': 1, 'more;': 1, 'why': 15, 'wilt': 3, 'turn': 1, 'floor': 1, 'watery': 2, 'shore': 3, 'given': 3, 'break': 1, 'day.\"': 1, \"earth's\": 1, 'answer': 2, 'raised': 1, 'darkness': 2, 'dread': 5, 'drear': 1, 'stony': 1, 'locks': 1, 'grey': 2, 'despair': 1, '\"prisoned': 1, 'jealousy': 3, 'den': 1, 'hoar;': 1, \"o're\": 1, '\"selfish': 1, 'cruel': 2, 'jealous': 1, 'selfish': 3, 'chained': 1, 'virgins': 1, 'youth': 7, '\"does': 1, 'hide': 1, 'buds': 2, 'blossoms': 3, 'grow': 2, 'sower': 1, 'sow': 1, 'plowman': 1, 'plough': 1, '\"break': 1, 'heavy': 2, 'chain': 3, 'freeze': 1, 'bones': 2, 'vain': 5, 'eternal': 4, 'bane': 1, 'bondage': 1, 'bound.\"': 1, 'clod': 3, 'pebble': 2, '\"love': 2, 'seeketh': 2, 'itself': 7, 'please': 2, 'hath': 1, 'another': 4, 'ease': 2, 'builds': 2, \"hell's\": 1, 'despair.\"': 1, 'clay': 4, 'trodden': 1, \"cattle's\": 1, 'brook': 1, 'warbled': 1, 'metres': 1, 'meet': 3, 'only': 3, 'self': 1, 'bind': 2, 'loss': 1, 'hell': 1, 'despite.\"': 1, 'thing': 5, 'rich': 1, 'fruitful': 1, 'land': 5, 'babes': 2, 'reduced': 1, 'misery': 1, 'fed': 2, 'usurous': 1, 'trembling': 6, 'poverty': 2, 'son': 1, 'bleak': 1, 'ways': 3, 'thorns': 3, 'winter': 3, \"where'er\": 2, 'rain': 1, 'fall': 2, 'hunger': 1, 'appall': 1, 'futurity': 1, 'prophetic': 1, 'grave': 3, 'sentence': 1, 'meek;': 1, 'desert': 5, 'become': 1, 'garden': 7, \"summer's\": 2, 'prime': 1, 'lyca': 8, 'seven': 3, 'summers': 2, 'wandered': 3, 'long': 1, 'hearing': 1, \"birds'\": 1, '\"sweet': 1, '\"lost': 1, '\"if': 1, 'ache': 1, 'wake;': 1, '\"frowning': 1, 'frowning': 1, 'close': 2, 'eyes.\"': 1, 'caverns': 1, 'viewed': 2, 'maid': 6, 'asleep': 1, 'kingly': 1, 'lion': 3, 'stood': 2, 'virgin': 9, 'gambolled': 1, 'hallowed': 1, 'leopards': 1, 'lay;': 1, 'bowed': 1, 'neck': 1, 'flame': 1, 'ruby': 1, 'came;': 1, 'lioness': 1, 'loosed': 1, 'slender': 1, 'conveyed': 1, \"lyca's\": 1, 'parents': 4, 'deserts': 1, 'tired': 4, 'woe-begone': 1, 'hoarse': 1, 'arm': 2, 'traced': 1, 'nights': 1, 'shadows': 2, 'starved': 1, 'pathless': 1, 'fancied': 1, 'strays': 1, 'famished': 1, 'weak': 4, 'piteous': 1, 'shriek': 2, 'unrest': 1, 'woman': 1, 'presse': 1, 'woe;': 1, 'further': 1, 'arms': 1, 'armed': 4, 'sore;': 1, 'couching': 1, 'turning': 1, 'stalked': 1, 'smelling': 1, 'prey;': 1, 'fears': 5, 'allay': 1, 'licks': 1, 'stands': 1, 'surprise;': 1, 'wondering': 1, 'behold': 1, 'shoulders': 1, 'flowed': 1, '\"follow': 1, 'me,\"': 1, 'said;': 1, 'maid;': 1, 'palace': 1, 'lies': 1, 'asleep.\"': 1, 'followed': 1, 'vision': 1, 'dell': 1, 'wolvish': 1, 'growl': 1, 'chimney': 1, 'sweeper': 1, 'crying': 1, 'notes': 2, '\"where': 1, 'say!\"--': 1, '\"they': 1, 'church': 6, '\"because': 1, 'heath': 2, \"winter's\": 2, 'clothed': 2, 'clothes': 1, 'death': 5, 'because': 4, 'dance': 2, 'done': 2, 'injury': 1, 'priest': 2, 'king': 1, 'misery.\"': 1, 'whisperings': 1, 'fresh': 1, 'turns': 1, 'wasted': 1, 'disguise': 1, 'sick': 2, 'art': 6, 'invisible': 1, 'worm': 9, 'flies': 1, 'howling': 1, 'storm': 1, 'crimson': 1, 'secret': 2, 'brushed': 1, 'drink': 4, 'some': 2, 'blind': 1, 'brush': 1, 'wing': 2, 'thought': 5, 'strength': 1, 'breath': 2, 'death;': 1, 'die': 1, 'dreamt': 1, 'mean': 1, 'maiden': 4, 'queen': 5, 'guarded': 1, 'witless': 1, \"ne'er\": 1, 'beguiled': 2, 'wiped': 1, 'away;': 2, 'hid': 2, \"heart's\": 1, 'wings': 3, 'fled;': 1, 'blushed': 1, 'rosy': 1, 'red': 1, 'dried': 1, 'ten-thousand': 1, 'shields': 1, 'spears': 2, 'again;': 1, 'vain;': 1, 'time': 4, 'hairs': 1, 'tiger': 5, 'burning': 3, 'forest': 1, 'eye': 5, 'frame': 2, 'fearful': 2, 'symmetry': 2, 'distant': 2, 'deeps': 1, 'skies': 2, 'burnt': 1, 'fire': 3, 'dare': 4, 'aspire': 2, 'seize': 1, 'shoulder': 1, 'twist': 1, 'sinews': 1, 'beat': 1, 'hammer': 1, 'furnace': 2, 'brain': 2, 'anvil': 1, 'grasp': 1, 'deadly': 1, 'terrors': 1, 'clasp': 1, 'stars': 1, 'threw': 1, 'watered': 2, 'forests': 1, 'offered': 1, 'bore;': 1, '\"i\\'ve': 1, 'tree,\"': 1, 'passed': 1, 'went': 4, 'tend': 1, 'night;': 1, 'turned': 2, 'ah': 7, 'sunflower': 3, 'countest': 1, 'steps': 1, 'sun;': 1, \"traveller's\": 1, 'journey': 1, 'done;': 1, 'pined': 1, 'desire': 2, 'shrouded': 1, 'graves': 2, 'wishes': 1, 'lily': 5, 'modest': 4, 'puts': 1, 'forth': 2, 'thorn': 2, 'humble': 4, \"threat'ning\": 1, 'horn': 2, 'threat': 1, 'stain': 1, 'beauty': 5, 'laid': 1, 'bank': 1, 'sleeping;': 1, 'rushes': 1, 'dank': 1, 'thistles': 1, 'waste;': 1, 'compelled': 1, 'chaste': 1, 'seen;': 1, 'chapel': 2, 'built': 1, 'midst': 1, 'used': 2, 'gates': 2, 'shut': 1, '\"thou': 1, 'shalt': 2, 'not,\"': 1, 'writ': 1, 'door;': 1, 'tombstones': 1, 'be;': 1, 'priests': 1, 'gowns': 1, 'rounds': 1, 'binding': 1, 'briars': 1, 'desires': 1, 'vagabond': 1, 'dear': 2, 'cold;': 1, 'alehouse': 1, 'healthy': 1, 'well;': 1, 'parsons': 1, 'wind': 2, 'blown': 3, 'bladder': 1, 'swell': 1, 'would': 5, 'ale': 1, 'regale': 1, \"we'd\": 3, 'wish': 2, 'stray': 1, 'parson': 1, 'preach': 1, 'dame': 1, 'lurch': 1, 'always': 1, 'bandy': 1, 'fasting': 1, 'birch': 1, 'rejoicing': 1, 'quarrel': 1, 'devil': 1, 'barrel': 1, 'apparel': 1, 'chartered': 2, 'street': 1, 'mark': 1, 'marks': 2, 'weakness': 2, 'ban': 1, 'mind-forged': 1, 'manacles': 1, \"chimney-sweeper's\": 1, 'blackening': 1, 'appals': 1, 'hapless': 1, \"soldier's\": 1, 'blood': 1, 'palace-walls': 1, 'midnight': 1, 'streets': 1, 'youthful': 4, \"harlot's\": 1, 'curse': 1, 'blasts': 2, 'new-born': 3, 'blights': 1, 'plagues': 1, 'marriage-hearse': 1, 'abstract': 1, 'somebody': 1, 'mutual': 1, 'brings': 1, 'loves': 3, 'increase': 1, 'cruelty': 3, 'knits': 1, 'snare': 1, 'spreads': 3, 'baits': 1, 'tears;': 1, 'humility': 1, 'takes': 1, 'root': 1, 'foot': 2, 'dismal': 2, 'mystery': 2, 'caterpillar': 1, 'bears': 1, 'fruit': 1, 'deceit': 1, 'eat': 1, 'raven': 1, 'thickest': 1, 'gods': 1, 'sea': 1, 'nature': 1, 'find': 4, 'search': 1, 'grows': 1, 'one': 3, 'groaned': 1, 'dangerous': 1, 'world': 1, 'leapt': 1, 'helpless': 4, 'loud': 1, 'fiend': 2, 'struggling': 1, 'striving': 1, 'against': 1, 'swaddling-bands': 1, 'bound': 2, 'best': 1, 'sulk': 1, 'poison': 2, 'angry': 2, 'friend': 1, 'wrath': 3, 'foe': 3, 'sunned': 1, 'deceitful': 1, 'wiles': 1, 'grew': 1, 'apple': 1, 'beheld': 1, 'knew': 4, 'stole': 1, 'veiled': 1, 'pole;': 1, 'glad': 1, 'outstretched': 1, '\"nought': 1, 'venerates': 1, 'possible': 1, 'greater': 1, 'than': 1, 'bird': 2, 'picks': 1, 'crumbs': 1, 'door.\"': 1, 'sat': 4, 'child;': 1, 'zeal': 1, 'seized': 1, 'coat': 1, 'admired': 1, 'priestly': 1, 'standing': 1, 'altar': 1, '\"lo': 1, '\"one': 1, 'sets': 1, 'reason': 2, 'judge': 1, 'mystery.\"': 1, 'stripped': 2, 'shirt': 1, 'iron': 2, 'burned': 2, 'place': 2, 'before;': 1, \"albion's\": 1, 'age': 2, 'reading': 1, 'indignant': 1, 'page': 1, 'former': 1, 'crime': 1, 'sunny': 2, 'pair': 1, 'met': 1, 'just': 1, 'removed': 1, 'curtains': 1, 'play;': 1, 'afar': 1, 'strangers': 1, 'forgot': 1, 'kisses': 2, 'agree': 1, 'waves': 1, 'wanderers': 1, 'loving': 1, 'limbs': 1, 'terror': 3, 'shook': 1, '\"ona': 1, 'shakes': 1, 'hoary': 1, 'hair!\"': 1, 'schoolboy': 1, 'summer': 4, 'singing': 1, 'huntsman': 1, 'winds': 1, 'sings': 1, 'company': 1, 'school': 1, 'drives': 1, 'outworn': 1, 'spend': 2, 'sighing': 1, 'dismay': 2, 'times': 1, 'drooping': 1, 'anxious': 1, 'hour;': 1, 'take': 3, \"learning's\": 1, 'dreary': 1, 'shower': 1, 'born': 3, 'cage': 1, 'annoy': 1, 'droop': 1, 'forget': 1, 'nipped': 1, 'plants': 1, 'springing': 1, \"care's\": 1, 'fruits': 2, 'appear': 2, 'gather': 1, 'griefs': 1, 'mellowing': 1, 'terzah': 1, \"whate'er\": 1, 'mortal': 4, 'birth': 1, 'consumed': 1, 'generation': 1, 'sexes': 2, 'sprang': 1, 'shame': 1, 'pride': 1, 'died;': 1, 'changed': 1, 'part': 2, 'didst': 3, 'mould': 1, 'false': 1, 'self-deceiving': 1, 'nostrils': 1, 'senseless': 1, 'betray': 1, 'jesus': 1, 'hither': 1, 'opening': 1, 'truth': 1, 'doubt': 1, 'disputes': 1, 'artful': 1, 'teazing': 1, 'folly': 1, 'endless': 1, 'maze;': 1, 'tangled': 1, 'roots': 2, 'perplex': 1, 'ways;': 1, 'stumble': 1, 'dead;': 1, 'care;': 1, 'lead': 1, 'others': 1, 'appendix': 1, 'secresy': 1, 'forged': 1, 'fiery': 1, 'forge': 1, 'sealed': 1, 'hungry': 1, 'gorge': 1, 'note': 1, 'written': 1, 'engraved': 1, '\"a': 1, 'image\"': 1, 'included': 1, \"blake's\": 1, \"thel's\": 1, 'motto': 1, 'eagle': 1, 'pit': 2, 'ask': 2, 'mole': 1, 'wisdom': 1, 'rod': 1, 'bowl': 1, 'author': 1, '&': 17, 'printer': 1, 'willm': 1, '1780': 1, 'daughters': 1, 'mne': 1, 'seraphim': 1, 'youngest': 1, 'paleness': 1, 'fade': 5, 'adona': 1, 'heard;': 1, 'gentle': 5, 'lamentation': 1, 'falls': 1, 'dew': 2, 'lotus': 1, 'watry': 2, 'bow': 1, 'parting': 1, 'reflection': 1, 'glass': 1, 'doves': 1, 'transient': 1, 'music': 1, 'gently': 1, 'walketh': 1, 'lilly': 1, 'valley': 4, 'breathing': 1, 'answerd': 3, 'weed': 1, 'lowly': 3, 'gilded': 1, 'butterfly': 1, 'scarce': 1, 'perches': 1, 'visited': 1, 'walks': 1, 'brooks': 1, 'manna': 1, 'melts': 1, 'fountains': 1, 'springs': 3, 'flourish': 1, 'complain': 2, 'mistress': 1, 'har': 4, 'utter': 1, 'ceasd': 1, 'smild': 1, 'shrine': 1, 'peaceful': 1, 'giving': 1, 'those': 1, 'crave': 1, 'voiceless': 1, 'nourish': 1, 'smells': 1, 'milky': 2, 'garments': 1, 'crops': 1, 'sittest': 1, 'smiling': 1, 'meekin': 1, 'mouth': 1, 'contagious': 1, 'taints': 1, 'wine': 1, 'purify': 1, 'honey;': 1, 'perfume': 1, 'which': 1, 'scatter': 1, 'blade': 1, 'revives': 1, 'milked': 1, 'cow': 1, 'tames': 1, 'fire-breathing': 1, 'steed': 1, 'faint': 1, 'kindled': 1, 'pearly': 1, 'throne': 2, 'answered': 2, 'glitters': 1, 'scatters': 1, 'thro': 1, 'humid': 1, 'descended': 1, 'bowd': 2, 'numerous': 1, 'charge': 2, 'verdant': 1, 'ii': 1, 'complainest': 1, 'hour': 1, 'pass': 2, 'shewd': 1, \"emerg'd\": 1, 'hovering': 1, 'glittering': 1, \"know'st\": 1, 'steeds': 1, 'luvah': 1, 'horses': 1, 'lookst': 1, 'fearest': 1, 'nothing': 2, 'remains;': 1, 'tenfold': 1, 'raptures': 1, 'weigh': 1, 'balmy': 1, 'court': 1, 'fair': 1, 'eyed': 1, 'shining': 3, 'kneels': 1, 'risen': 1, \"link'd\": 1, 'band': 1, 'united': 1, 'bearing': 1, 'food': 4, 'smell': 1, 'sweetest': 1, 'warbling': 2, 'delights': 1, 'use': 2, 'women': 1, \"liv'd\": 1, 'worms': 3, 'reclind': 1, 'airy': 1, 'great': 2, 'lives': 2, 'alone': 1, 'pensive': 1, 'arose': 1, 'lillys': 2, 'leaf': 1, 'saild': 1, 'partner': 1, 'vale': 1, 'iii': 1, \"astonish'd\": 1, \"view'd\": 1, 'wrapped': 1, 'leaf;': 1, \"can'st\": 2, 'none': 3, \"rais'd\": 1, 'exhald': 1, 'fondness': 1, \"fix'd\": 1, 'ourselves': 1, 'seest': 1, 'meanest': 1, 'indeed': 1, 'pours': 1, 'oil': 2, 'binds': 1, 'nuptial': 1, 'bands': 1, 'says;': 1, 'loved': 1, 'ponder': 1, 'ponder;': 1, 'daughter': 1, \"wip'd\": 1, 'veil': 1, 'alas': 1, 'therefore': 2, 'punish': 1, 'evil': 1, 'wilful': 1, \"bruis'd\": 1, \"cherish'd\": 1, 'milk': 1, 'complaind': 1, 'matron': 1, 'roof': 1, \"call'd\": 1, 'enter': 3, 'house': 1, 'tis': 1, 'iv': 1, 'terrific': 1, 'porter': 1, 'lifted': 1, 'northern': 1, 'bar': 1, \"enter'd\": 1, 'secrets': 1, 'unknown;': 1, 'couches': 1, 'dead': 1, 'fibrous': 1, 'infixes': 1, 'restless': 1, 'twists': 1, \"thro'\": 1, 'listning': 2, 'dolors': 1, 'lamentations': 1, 'waiting': 1, 'oft': 1, 'silence': 1, 'plot': 1, 'breathed': 1, 'ear': 2, 'closed': 1, 'destruction': 1, 'glistening': 1, 'eyelids': 1, 'stord': 1, 'arrows': 1, 'drawn': 1, 'thousand': 1, 'fighting': 1, 'ambush': 1, 'gifts': 1, 'graces': 1, 'showring': 1, 'coined': 1, \"impress'd\": 1, 'honey': 1, 'whirlpool': 1, 'fierce': 1, 'draw': 1, 'creations': 1, 'nostril': 1, 'wide': 1, 'inhaling': 1, 'affright': 1, 'curb': 1, 'curtain': 1, 'flesh': 1, 'started': 1, 'seat': 1, 'unhinderd': 1}\n" + "('poems', 1)\n", + "('by', 24)\n", + "('william', 2)\n", + "('blake', 3)\n", + "('1789', 1)\n", + "('you', 10)\n", + "('can', 27)\n", + "('do', 9)\n", + "('this', 16)\n", + "('songs', 7)\n", + "('of', 146)\n", + "('innocence', 3)\n", + "('and', 348)\n", + "('experience', 3)\n", + "('the', 439)\n", + "('book', 6)\n", + "('thel', 15)\n", + "('introduction', 2)\n", + "('piping', 3)\n", + "('down', 20)\n", + "('valleys', 4)\n", + "('wild', 9)\n", + "('pleasant', 5)\n", + "('glee', 1)\n", + "('on', 44)\n", + "('a', 128)\n", + "('cloud', 15)\n", + "('i', 125)\n", + "('saw', 7)\n", + "('child', 18)\n", + "('he', 54)\n", + "('laughing', 5)\n", + "('said', 8)\n", + "('to', 111)\n", + "('me', 34)\n", + "('pipe', 4)\n", + "('song', 10)\n", + "('about', 1)\n", + "('lamb', 14)\n", + "('so', 21)\n", + "('piped', 2)\n", + "('with', 66)\n", + "('merry', 9)\n", + "('cheer', 2)\n", + "('piper', 2)\n", + "('that', 39)\n", + "('again', 3)\n", + "('wept', 9)\n", + "('hear', 16)\n", + "('drop', 1)\n", + "('thy', 31)\n", + "('happy', 19)\n", + "('sing', 11)\n", + "('sang', 2)\n", + "('same', 1)\n", + "('while', 14)\n", + "('joy', 25)\n", + "('sit', 12)\n", + "('thee', 42)\n", + "('write', 1)\n", + "('in', 141)\n", + "('all', 39)\n", + "('may', 6)\n", + "('read', 2)\n", + "(\"vanish'd\", 1)\n", + "('from', 32)\n", + "('my', 83)\n", + "('sight', 2)\n", + "(\"pluck'd\", 1)\n", + "('hollow', 3)\n", + "('reed', 1)\n", + "('made', 6)\n", + "('rural', 1)\n", + "('pen', 1)\n", + "(\"stain'd\", 1)\n", + "('water', 3)\n", + "('clear', 1)\n", + "('wrote', 1)\n", + "('every', 17)\n", + "('shepherd', 2)\n", + "('how', 14)\n", + "('sweet', 28)\n", + "('is', 52)\n", + "(\"shepherd's\", 1)\n", + "('lot', 2)\n", + "('morn', 8)\n", + "('evening', 5)\n", + "('stays', 1)\n", + "('shall', 19)\n", + "('follow', 3)\n", + "('his', 57)\n", + "('sheep', 4)\n", + "('day', 19)\n", + "('tongue', 4)\n", + "('be', 25)\n", + "('filled', 6)\n", + "('praise', 2)\n", + "('for', 32)\n", + "('hears', 4)\n", + "(\"lambs'\", 1)\n", + "('innocent', 4)\n", + "('call', 4)\n", + "(\"ewes'\", 1)\n", + "('tender', 9)\n", + "('reply', 1)\n", + "('watching', 1)\n", + "('they', 44)\n", + "('are', 25)\n", + "('peace', 9)\n", + "('know', 10)\n", + "('when', 28)\n", + "('their', 34)\n", + "('nigh', 2)\n", + "('echoing', 3)\n", + "('green', 16)\n", + "('sun', 11)\n", + "('does', 18)\n", + "('arise', 9)\n", + "('make', 5)\n", + "('skies', 4)\n", + "('bells', 1)\n", + "('ring', 1)\n", + "('welcome', 4)\n", + "('spring', 8)\n", + "('skylark', 2)\n", + "('thrush', 1)\n", + "('birds', 10)\n", + "('bush', 1)\n", + "('louder', 1)\n", + "('around', 5)\n", + "(\"bells'\", 1)\n", + "('cheerful', 1)\n", + "('sound', 2)\n", + "('our', 22)\n", + "('sports', 2)\n", + "('seen', 6)\n", + "('old', 6)\n", + "('john', 1)\n", + "('white', 12)\n", + "('hair', 6)\n", + "('laugh', 6)\n", + "('away', 24)\n", + "('care', 11)\n", + "('sitting', 2)\n", + "('under', 4)\n", + "('oak', 1)\n", + "('among', 8)\n", + "('folk', 1)\n", + "('at', 7)\n", + "('play', 9)\n", + "('soon', 5)\n", + "('say', 7)\n", + "('such', 6)\n", + "('were', 10)\n", + "('joys', 3)\n", + "('we', 14)\n", + "('girls', 2)\n", + "('boys', 2)\n", + "('youth', 8)\n", + "('time', 5)\n", + "('till', 15)\n", + "('little', 45)\n", + "('ones', 3)\n", + "('weary', 5)\n", + "('no', 18)\n", + "('more', 9)\n", + "('descend', 2)\n", + "('have', 17)\n", + "('an', 21)\n", + "('end', 2)\n", + "('round', 9)\n", + "('laps', 1)\n", + "('mothers', 2)\n", + "('many', 7)\n", + "('sisters', 1)\n", + "('brothers', 2)\n", + "('like', 35)\n", + "('nest', 4)\n", + "('ready', 2)\n", + "('rest', 3)\n", + "('sport', 2)\n", + "('darkening', 1)\n", + "('who', 18)\n", + "('dost', 5)\n", + "('thou', 35)\n", + "('gave', 3)\n", + "('life', 7)\n", + "('bid', 1)\n", + "('feed', 4)\n", + "('stream', 2)\n", + "(\"o'er\", 12)\n", + "('mead', 1)\n", + "('clothing', 2)\n", + "('delight', 14)\n", + "('softest', 2)\n", + "('wolly', 1)\n", + "('bright', 15)\n", + "('voice', 16)\n", + "('making', 2)\n", + "('vales', 9)\n", + "('rejoice', 2)\n", + "(\"i'll\", 4)\n", + "('tell', 6)\n", + "('called', 2)\n", + "('name', 5)\n", + "('calls', 2)\n", + "('himself', 1)\n", + "('meek', 2)\n", + "('mild', 7)\n", + "('became', 2)\n", + "('god', 11)\n", + "('bless', 3)\n", + "('black', 8)\n", + "('boy', 11)\n", + "('mother', 17)\n", + "('bore', 7)\n", + "('southern', 2)\n", + "('am', 16)\n", + "('but', 38)\n", + "('oh', 11)\n", + "('soul', 2)\n", + "('as', 16)\n", + "('angel', 9)\n", + "('english', 2)\n", + "('if', 17)\n", + "('bereaved', 1)\n", + "('light', 11)\n", + "('taught', 2)\n", + "('underneath', 3)\n", + "('tree', 10)\n", + "('before', 7)\n", + "('heat', 5)\n", + "('she', 15)\n", + "('took', 2)\n", + "('her', 34)\n", + "('lap', 1)\n", + "('kissed', 3)\n", + "('pointed', 1)\n", + "('east', 1)\n", + "('began', 3)\n", + "('look', 5)\n", + "('rising', 4)\n", + "('there', 11)\n", + "('live', 6)\n", + "('gives', 4)\n", + "('flowers', 9)\n", + "('trees', 1)\n", + "('beasts', 2)\n", + "('men', 4)\n", + "('receive', 2)\n", + "('comfort', 1)\n", + "('morning', 10)\n", + "('noonday', 1)\n", + "('put', 2)\n", + "('earth', 9)\n", + "('space', 1)\n", + "('learn', 1)\n", + "('bear', 5)\n", + "('beams', 3)\n", + "('love', 29)\n", + "('these', 6)\n", + "('bodies', 1)\n", + "('sunburnt', 1)\n", + "('face', 12)\n", + "('shady', 1)\n", + "('grove', 3)\n", + "('souls', 2)\n", + "(\"learn'd\", 1)\n", + "('will', 3)\n", + "('vanish', 3)\n", + "('saying', 3)\n", + "(\"'come\", 1)\n", + "('out', 5)\n", + "('golden', 8)\n", + "('tent', 3)\n", + "('lambs', 4)\n", + "(\"rejoice'\", 1)\n", + "('thus', 4)\n", + "('did', 12)\n", + "('free', 6)\n", + "('shade', 6)\n", + "('him', 11)\n", + "('lean', 1)\n", + "('upon', 14)\n", + "(\"father's\", 2)\n", + "('knee', 1)\n", + "('then', 30)\n", + "('stand', 2)\n", + "('stroke', 1)\n", + "('silver', 3)\n", + "('blossom', 4)\n", + "('sparrow', 1)\n", + "('leaves', 2)\n", + "('sees', 2)\n", + "('swift', 1)\n", + "('arrow', 1)\n", + "('seek', 6)\n", + "('your', 11)\n", + "('cradle', 2)\n", + "('narrow', 1)\n", + "('near', 6)\n", + "('bosom', 4)\n", + "('pretty', 8)\n", + "('robin', 2)\n", + "('sobbing', 2)\n", + "('chimney', 3)\n", + "('sweeper', 2)\n", + "('died', 2)\n", + "('was', 30)\n", + "('very', 3)\n", + "('young', 1)\n", + "('father', 20)\n", + "('sold', 1)\n", + "('yet', 5)\n", + "('could', 6)\n", + "('scarcely', 1)\n", + "('cry', 7)\n", + "('weep', 24)\n", + "('chimneys', 1)\n", + "('sweep', 1)\n", + "('soot', 2)\n", + "('sleep', 21)\n", + "(\"there's\", 1)\n", + "('tom', 6)\n", + "('dacre', 1)\n", + "('cried', 1)\n", + "('head', 13)\n", + "('curled', 1)\n", + "(\"lamb's\", 1)\n", + "('back', 3)\n", + "('shaved', 1)\n", + "('hush', 1)\n", + "('never', 17)\n", + "('mind', 5)\n", + "('it', 28)\n", + "(\"head's\", 1)\n", + "('bare', 2)\n", + "('cannot', 6)\n", + "('spoil', 1)\n", + "('quiet', 1)\n", + "('night', 28)\n", + "('sleeping', 7)\n", + "('had', 7)\n", + "('thousands', 2)\n", + "('sweepers', 1)\n", + "('dick', 1)\n", + "('joe', 1)\n", + "('ned', 1)\n", + "('jack', 1)\n", + "('them', 8)\n", + "('locked', 1)\n", + "('up', 6)\n", + "('coffins', 2)\n", + "('came', 9)\n", + "('key', 1)\n", + "('opened', 1)\n", + "('let', 7)\n", + "('plain', 1)\n", + "('leaping', 1)\n", + "('run', 1)\n", + "('wash', 1)\n", + "('river', 3)\n", + "('shine', 6)\n", + "('naked', 5)\n", + "('bags', 2)\n", + "('left', 1)\n", + "('behind', 1)\n", + "('rise', 4)\n", + "('clouds', 3)\n", + "('wind', 3)\n", + "('told', 5)\n", + "(\"he'd\", 2)\n", + "('good', 1)\n", + "('want', 2)\n", + "('awoke', 1)\n", + "('rose', 9)\n", + "('dark', 7)\n", + "('got', 1)\n", + "('brushes', 1)\n", + "('work', 3)\n", + "('though', 2)\n", + "('cold', 7)\n", + "('warm', 3)\n", + "('duty', 1)\n", + "('need', 1)\n", + "('not', 37)\n", + "('fear', 11)\n", + "('harm', 2)\n", + "('lost', 8)\n", + "('where', 25)\n", + "('going', 1)\n", + "('walk', 3)\n", + "('fast', 1)\n", + "('speak', 4)\n", + "('or', 21)\n", + "('else', 2)\n", + "('wet', 1)\n", + "('dew', 4)\n", + "('mire', 1)\n", + "('deep', 8)\n", + "('vapour', 1)\n", + "('flew', 2)\n", + "('found', 3)\n", + "('lonely', 3)\n", + "('fen', 1)\n", + "('led', 6)\n", + "('wandering', 1)\n", + "('ever', 4)\n", + "('appeared', 1)\n", + "('hand', 9)\n", + "('brought', 1)\n", + "('sorrow', 9)\n", + "('pale', 5)\n", + "('through', 7)\n", + "('dale', 3)\n", + "('weeping', 14)\n", + "('sought', 3)\n", + "('woods', 1)\n", + "('dimpling', 1)\n", + "('runs', 2)\n", + "('air', 6)\n", + "('wit', 1)\n", + "('hill', 2)\n", + "('laughs', 2)\n", + "('noise', 2)\n", + "('meadows', 1)\n", + "('lively', 1)\n", + "('grasshopper', 1)\n", + "('scene', 1)\n", + "('mary', 1)\n", + "('susan', 1)\n", + "('emily', 1)\n", + "('mouths', 1)\n", + "('ha', 4)\n", + "('painted', 1)\n", + "('table', 1)\n", + "('cherries', 1)\n", + "('nuts', 1)\n", + "('spread', 1)\n", + "('come', 10)\n", + "('join', 1)\n", + "('chorus', 1)\n", + "('dreams', 3)\n", + "('form', 8)\n", + "('lovely', 4)\n", + "(\"infant's\", 4)\n", + "('streams', 1)\n", + "('silent', 8)\n", + "('moony', 1)\n", + "('soft', 5)\n", + "('weave', 2)\n", + "('brows', 1)\n", + "('infant', 12)\n", + "('crown', 3)\n", + "('hover', 3)\n", + "('smiles', 11)\n", + "('over', 8)\n", + "(\"mother's\", 2)\n", + "('smile', 8)\n", + "('livelong', 2)\n", + "('beguile', 2)\n", + "('moans', 3)\n", + "('dovelike', 2)\n", + "('sighs', 2)\n", + "('chase', 1)\n", + "('slumber', 1)\n", + "('thine', 2)\n", + "('eyes', 9)\n", + "('moan', 3)\n", + "('sweeter', 1)\n", + "('creation', 1)\n", + "('slept', 1)\n", + "('smiled', 2)\n", + "('doth', 7)\n", + "('babe', 2)\n", + "('holy', 13)\n", + "('image', 8)\n", + "('trace', 1)\n", + "('once', 4)\n", + "('maker', 4)\n", + "('lay', 10)\n", + "('small', 7)\n", + "('see', 16)\n", + "('heavenly', 1)\n", + "('own', 4)\n", + "('heaven', 7)\n", + "('beguiles', 1)\n", + "('divine', 6)\n", + "('mercy', 8)\n", + "('pity', 9)\n", + "('pray', 3)\n", + "('distress', 2)\n", + "('virtues', 1)\n", + "('return', 4)\n", + "('thankfulness', 1)\n", + "('dear', 3)\n", + "('man', 6)\n", + "('has', 5)\n", + "('human', 16)\n", + "('heart', 10)\n", + "('dress', 4)\n", + "('clime', 3)\n", + "('prays', 2)\n", + "('must', 3)\n", + "('heathen', 1)\n", + "('turk', 1)\n", + "('jew', 1)\n", + "('dwell', 3)\n", + "('dwelling', 1)\n", + "('too', 3)\n", + "('thursday', 3)\n", + "(\"'twas\", 1)\n", + "('faces', 1)\n", + "('clean', 1)\n", + "('children', 12)\n", + "('walking', 3)\n", + "('two', 4)\n", + "('blue', 1)\n", + "('grey', 3)\n", + "('headed', 1)\n", + "('beadles', 1)\n", + "('walked', 2)\n", + "('wands', 1)\n", + "('snow', 4)\n", + "('into', 5)\n", + "('high', 3)\n", + "('dome', 1)\n", + "(\"paul's\", 1)\n", + "('thames', 2)\n", + "('waters', 2)\n", + "('flow', 3)\n", + "('what', 26)\n", + "('multitude', 1)\n", + "('seemed', 1)\n", + "('london', 2)\n", + "('town', 1)\n", + "('seated', 1)\n", + "('companies', 1)\n", + "('radiance', 1)\n", + "('hum', 2)\n", + "('multitudes', 2)\n", + "('raising', 1)\n", + "('hands', 3)\n", + "('now', 7)\n", + "('mighty', 1)\n", + "('raise', 1)\n", + "('harmonious', 1)\n", + "('thunderings', 1)\n", + "('seats', 1)\n", + "('beneath', 2)\n", + "('aged', 1)\n", + "('wise', 1)\n", + "('guardians', 1)\n", + "('poor', 4)\n", + "('cherish', 2)\n", + "('lest', 1)\n", + "('drive', 2)\n", + "('door', 3)\n", + "('descending', 2)\n", + "('west', 1)\n", + "('star', 1)\n", + "('mine', 2)\n", + "('moon', 2)\n", + "('flower', 5)\n", + "(\"heaven's\", 3)\n", + "('bower', 2)\n", + "('sits', 2)\n", + "('farewell', 1)\n", + "('fields', 2)\n", + "('flocks', 2)\n", + "(\"ta'en\", 1)\n", + "('nibbled', 1)\n", + "('move', 1)\n", + "('feet', 5)\n", + "('angels', 2)\n", + "('unseen', 2)\n", + "('pour', 2)\n", + "('blessing', 2)\n", + "('without', 2)\n", + "('ceasing', 1)\n", + "('each', 5)\n", + "('bud', 1)\n", + "('thoughtless', 2)\n", + "('covered', 3)\n", + "('visit', 1)\n", + "('caves', 2)\n", + "('beast', 1)\n", + "('keep', 3)\n", + "('any', 3)\n", + "('should', 6)\n", + "('been', 2)\n", + "('bed', 8)\n", + "('wolves', 1)\n", + "('tigers', 3)\n", + "('howl', 2)\n", + "('prey', 3)\n", + "('pitying', 5)\n", + "('seeking', 2)\n", + "('thirst', 1)\n", + "('rush', 1)\n", + "('dreadful', 1)\n", + "('most', 3)\n", + "('heedful', 1)\n", + "('spirit', 2)\n", + "('new', 4)\n", + "('worlds', 1)\n", + "('inherit', 1)\n", + "(\"lion's\", 2)\n", + "('ruddy', 2)\n", + "('tears', 12)\n", + "('gold', 6)\n", + "('cries', 1)\n", + "('fold', 2)\n", + "('wrath', 4)\n", + "('meekness', 1)\n", + "('health', 1)\n", + "('sickness', 1)\n", + "('driven', 2)\n", + "('immortal', 3)\n", + "('beside', 4)\n", + "('bleating', 1)\n", + "('lie', 2)\n", + "('think', 4)\n", + "('graze', 1)\n", + "('after', 2)\n", + "('washed', 1)\n", + "(\"life's\", 1)\n", + "('mane', 3)\n", + "('guard', 1)\n", + "('flute', 1)\n", + "(\"it's\", 1)\n", + "('mute', 1)\n", + "(\"bird's\", 2)\n", + "('nightingale', 1)\n", + "('lark', 1)\n", + "('sky', 3)\n", + "('merrily', 7)\n", + "('year', 5)\n", + "('full', 1)\n", + "('girl', 4)\n", + "('cock', 1)\n", + "('crow', 1)\n", + "('here', 2)\n", + "('lick', 2)\n", + "('neck', 2)\n", + "('pull', 1)\n", + "('wool', 1)\n", + "('kiss', 2)\n", + "(\"nurse's\", 2)\n", + "('voices', 3)\n", + "('heard', 12)\n", + "('within', 1)\n", + "('breast', 5)\n", + "('everything', 1)\n", + "('still', 1)\n", + "('home', 4)\n", + "('gone', 6)\n", + "('dews', 2)\n", + "('leave', 2)\n", + "('off', 1)\n", + "('us', 5)\n", + "('appears', 1)\n", + "('go', 8)\n", + "('besides', 2)\n", + "('fly', 7)\n", + "('hills', 2)\n", + "('well', 3)\n", + "('fades', 3)\n", + "('leaped', 1)\n", + "('shouted', 1)\n", + "('laughed', 1)\n", + "('echoed', 1)\n", + "('days', 4)\n", + "('befall', 2)\n", + "('dream', 4)\n", + "('guarded', 2)\n", + "('emmet', 1)\n", + "('its', 14)\n", + "('way', 2)\n", + "('grass', 7)\n", + "('methought', 1)\n", + "('troubled', 1)\n", + "('wildered', 1)\n", + "('forlorn', 1)\n", + "('benighted', 1)\n", + "('travel', 1)\n", + "('worn', 3)\n", + "('tangle', 1)\n", + "('spray', 1)\n", + "('broke', 1)\n", + "('sigh', 5)\n", + "('abroad', 1)\n", + "('dropped', 1)\n", + "('tear', 6)\n", + "('glow', 1)\n", + "('worm', 10)\n", + "('replied', 1)\n", + "('wailing', 1)\n", + "('wight', 1)\n", + "('watchman', 1)\n", + "('set', 2)\n", + "('ground', 5)\n", + "('beetle', 1)\n", + "('goes', 1)\n", + "(\"beetle's\", 1)\n", + "('wanderer', 1)\n", + "('hie', 1)\n", + "(\"another's\", 4)\n", + "('woe', 9)\n", + "('grief', 4)\n", + "('kind', 1)\n", + "('relief', 1)\n", + "('falling', 1)\n", + "('feel', 3)\n", + "(\"sorrow's\", 1)\n", + "('share', 1)\n", + "('nor', 15)\n", + "('groan', 1)\n", + "('wren', 1)\n", + "('sorrows', 2)\n", + "('woes', 1)\n", + "('infants', 3)\n", + "('next', 1)\n", + "('pouring', 1)\n", + "('both', 6)\n", + "('wiping', 2)\n", + "('give', 3)\n", + "('becomes', 2)\n", + "('canst', 2)\n", + "('destroy', 3)\n", + "('fled', 6)\n", + "('bard', 2)\n", + "('present', 1)\n", + "('past', 1)\n", + "('future', 2)\n", + "('whose', 1)\n", + "('ears', 2)\n", + "('word', 1)\n", + "('ancient', 3)\n", + "('calling', 1)\n", + "('lapsed', 1)\n", + "('might', 2)\n", + "('control', 1)\n", + "('starry', 3)\n", + "('pole', 2)\n", + "('fallen', 3)\n", + "('renew', 2)\n", + "('o', 13)\n", + "('dewy', 3)\n", + "('rises', 1)\n", + "('slumbrous', 1)\n", + "('mass', 1)\n", + "('turn', 2)\n", + "('why', 15)\n", + "('wilt', 3)\n", + "('floor', 1)\n", + "('watery', 2)\n", + "('shore', 3)\n", + "('given', 3)\n", + "('break', 2)\n", + "(\"earth's\", 1)\n", + "('answer', 2)\n", + "('raised', 1)\n", + "('darkness', 2)\n", + "('dread', 5)\n", + "('drear', 1)\n", + "('stony', 1)\n", + "('locks', 1)\n", + "('despair', 2)\n", + "('prisoned', 1)\n", + "('jealousy', 3)\n", + "('den', 1)\n", + "('hoar', 1)\n", + "(\"o're\", 1)\n", + "('selfish', 4)\n", + "('cruel', 2)\n", + "('jealous', 1)\n", + "('chained', 1)\n", + "('virgins', 1)\n", + "('hide', 1)\n", + "('buds', 2)\n", + "('blossoms', 3)\n", + "('grow', 2)\n", + "('sower', 1)\n", + "('sow', 1)\n", + "('plowman', 1)\n", + "('plough', 1)\n", + "('heavy', 2)\n", + "('chain', 3)\n", + "('freeze', 1)\n", + "('bones', 2)\n", + "('vain', 6)\n", + "('eternal', 4)\n", + "('bane', 1)\n", + "('bondage', 1)\n", + "('bound', 3)\n", + "('clod', 3)\n", + "('pebble', 2)\n", + "('seeketh', 2)\n", + "('itself', 7)\n", + "('please', 2)\n", + "('hath', 1)\n", + "('another', 4)\n", + "('ease', 2)\n", + "('builds', 2)\n", + "(\"hell's\", 1)\n", + "('clay', 4)\n", + "('trodden', 1)\n", + "(\"cattle's\", 1)\n", + "('brook', 1)\n", + "('warbled', 1)\n", + "('metres', 1)\n", + "('meet', 3)\n", + "('only', 3)\n", + "('self', 2)\n", + "('bind', 2)\n", + "('loss', 1)\n", + "('hell', 1)\n", + "('despite', 1)\n", + "('thing', 5)\n", + "('rich', 1)\n", + "('fruitful', 1)\n", + "('land', 5)\n", + "('babes', 2)\n", + "('reduced', 1)\n", + "('misery', 2)\n", + "('fed', 2)\n", + "('usurous', 1)\n", + "('trembling', 6)\n", + "('poverty', 2)\n", + "('son', 1)\n", + "('bleak', 1)\n", + "('ways', 4)\n", + "('thorns', 3)\n", + "('winter', 3)\n", + "(\"where'er\", 2)\n", + "('rain', 1)\n", + "('fall', 2)\n", + "('hunger', 1)\n", + "('appall', 1)\n", + "('futurity', 1)\n", + "('prophetic', 1)\n", + "('(grave', 1)\n", + "('sentence', 1)\n", + "('deep)', 1)\n", + "('desert', 5)\n", + "('become', 1)\n", + "('garden', 7)\n", + "(\"summer's\", 2)\n", + "('prime', 1)\n", + "('lyca', 8)\n", + "('seven', 3)\n", + "('summers', 2)\n", + "('wandered', 3)\n", + "('long', 1)\n", + "('hearing', 1)\n", + "(\"birds'\", 1)\n", + "('ache', 1)\n", + "('wake', 1)\n", + "('frowning', 2)\n", + "('close', 2)\n", + "('caverns', 1)\n", + "('viewed', 2)\n", + "('maid', 7)\n", + "('asleep', 2)\n", + "('kingly', 1)\n", + "('lion', 3)\n", + "('stood', 2)\n", + "('virgin', 9)\n", + "('gambolled', 1)\n", + "('hallowed', 1)\n", + "('leopards', 1)\n", + "('bowed', 1)\n", + "('flame', 1)\n", + "('ruby', 1)\n", + "('lioness', 1)\n", + "('loosed', 1)\n", + "('slender', 1)\n", + "('conveyed', 1)\n", + "(\"lyca's\", 1)\n", + "('parents', 4)\n", + "('deserts', 1)\n", + "('tired', 4)\n", + "('begone', 1)\n", + "('hoarse', 1)\n", + "('arm', 2)\n", + "('traced', 1)\n", + "('nights', 1)\n", + "('shadows', 2)\n", + "('starved', 1)\n", + "('pathless', 1)\n", + "('fancied', 1)\n", + "('strays', 1)\n", + "('famished', 1)\n", + "('weak', 4)\n", + "('piteous', 1)\n", + "('shriek', 2)\n", + "('unrest', 1)\n", + "('woman', 1)\n", + "('presse', 1)\n", + "('further', 1)\n", + "('arms', 1)\n", + "('armed', 4)\n", + "('sore', 1)\n", + "('couching', 1)\n", + "('turning', 1)\n", + "('stalked', 1)\n", + "('smelling', 1)\n", + "('fears', 5)\n", + "('allay', 1)\n", + "('licks', 1)\n", + "('stands', 1)\n", + "('surprise', 1)\n", + "('wondering', 1)\n", + "('behold', 1)\n", + "('shoulders', 1)\n", + "('flowed', 1)\n", + "('palace', 2)\n", + "('lies', 1)\n", + "('followed', 1)\n", + "('vision', 1)\n", + "('dell', 1)\n", + "('wolvish', 1)\n", + "('growl', 1)\n", + "('crying', 1)\n", + "('notes', 2)\n", + "('church', 6)\n", + "('because', 5)\n", + "('heath', 2)\n", + "(\"winter's\", 2)\n", + "('clothed', 2)\n", + "('clothes', 1)\n", + "('death', 6)\n", + "('dance', 2)\n", + "('done', 3)\n", + "('injury', 1)\n", + "('priest', 2)\n", + "('king', 1)\n", + "('whisperings', 1)\n", + "('fresh', 1)\n", + "('turns', 1)\n", + "('wasted', 1)\n", + "('disguise', 1)\n", + "('sick', 2)\n", + "('art', 6)\n", + "('invisible', 1)\n", + "('flies', 1)\n", + "('howling', 1)\n", + "('storm', 1)\n", + "('crimson', 1)\n", + "('secret', 2)\n", + "('brushed', 1)\n", + "('drink', 4)\n", + "('some', 2)\n", + "('blind', 1)\n", + "('brush', 1)\n", + "('wing', 2)\n", + "('thought', 5)\n", + "('strength', 1)\n", + "('breath', 2)\n", + "('die', 1)\n", + "('dreamt', 1)\n", + "('mean', 1)\n", + "('maiden', 4)\n", + "('queen', 5)\n", + "('witless', 1)\n", + "(\"ne'er\", 1)\n", + "('beguiled', 2)\n", + "('wiped', 1)\n", + "('hid', 2)\n", + "(\"heart's\", 1)\n", + "('wings', 3)\n", + "('blushed', 1)\n", + "('rosy', 1)\n", + "('red', 1)\n", + "('dried', 1)\n", + "('ten', 1)\n", + "('thousand', 2)\n", + "('shields', 1)\n", + "('spears', 2)\n", + "('hairs', 1)\n", + "('tiger', 5)\n", + "('burning', 3)\n", + "('forest', 1)\n", + "('eye', 5)\n", + "('frame', 2)\n", + "('fearful', 2)\n", + "('symmetry', 2)\n", + "('distant', 2)\n", + "('deeps', 1)\n", + "('burnt', 1)\n", + "('fire', 4)\n", + "('dare', 4)\n", + "('aspire', 2)\n", + "('seize', 1)\n", + "('shoulder', 1)\n", + "('twist', 1)\n", + "('sinews', 1)\n", + "('beat', 1)\n", + "('hammer', 1)\n", + "('furnace', 2)\n", + "('brain', 2)\n", + "('anvil', 1)\n", + "('grasp', 1)\n", + "('deadly', 1)\n", + "('terrors', 1)\n", + "('clasp', 1)\n", + "('stars', 1)\n", + "('threw', 1)\n", + "('watered', 2)\n", + "('forests', 1)\n", + "('offered', 1)\n", + "(\"i've\", 1)\n", + "('passed', 1)\n", + "('went', 4)\n", + "('tend', 1)\n", + "('turned', 2)\n", + "('ah', 7)\n", + "('sunflower', 3)\n", + "('countest', 1)\n", + "('steps', 1)\n", + "(\"traveller's\", 1)\n", + "('journey', 1)\n", + "('pined', 1)\n", + "('desire', 2)\n", + "('shrouded', 1)\n", + "('graves', 2)\n", + "('wishes', 1)\n", + "('lily', 5)\n", + "('modest', 4)\n", + "('puts', 1)\n", + "('forth', 2)\n", + "('thorn', 2)\n", + "('humble', 4)\n", + "(\"threat'ning\", 1)\n", + "('horn', 2)\n", + "('threat', 1)\n", + "('stain', 1)\n", + "('beauty', 5)\n", + "('laid', 1)\n", + "('bank', 1)\n", + "('rushes', 1)\n", + "('dank', 1)\n", + "('thistles', 1)\n", + "('waste', 1)\n", + "('compelled', 1)\n", + "('chaste', 1)\n", + "('chapel', 2)\n", + "('built', 1)\n", + "('midst', 1)\n", + "('used', 2)\n", + "('gates', 2)\n", + "('shut', 1)\n", + "('shalt', 2)\n", + "('writ', 1)\n", + "('tombstones', 1)\n", + "('priests', 1)\n", + "('gowns', 1)\n", + "('rounds', 1)\n", + "('binding', 1)\n", + "('briars', 1)\n", + "('desires', 1)\n", + "('vagabond', 1)\n", + "('alehouse', 1)\n", + "('healthy', 1)\n", + "('parsons', 1)\n", + "('blown', 3)\n", + "('bladder', 1)\n", + "('swell', 1)\n", + "('would', 5)\n", + "('ale', 1)\n", + "('regale', 1)\n", + "(\"we'd\", 3)\n", + "('wish', 2)\n", + "('stray', 1)\n", + "('parson', 1)\n", + "('preach', 1)\n", + "('dame', 1)\n", + "('lurch', 1)\n", + "('always', 1)\n", + "('bandy', 1)\n", + "('fasting', 1)\n", + "('birch', 1)\n", + "('rejoicing', 1)\n", + "('quarrel', 1)\n", + "('devil', 1)\n", + "('barrel', 1)\n", + "('apparel', 1)\n", + "('chartered', 2)\n", + "('street', 1)\n", + "('mark', 1)\n", + "('marks', 2)\n", + "('weakness', 2)\n", + "('ban', 1)\n", + "('forged', 2)\n", + "('manacles', 1)\n", + "(\"sweeper's\", 1)\n", + "('blackening', 1)\n", + "('appals', 1)\n", + "('hapless', 1)\n", + "(\"soldier's\", 1)\n", + "('blood', 1)\n", + "('walls', 1)\n", + "('midnight', 1)\n", + "('streets', 1)\n", + "('youthful', 4)\n", + "(\"harlot's\", 1)\n", + "('curse', 1)\n", + "('blasts', 2)\n", + "('born', 6)\n", + "('blights', 1)\n", + "('plagues', 1)\n", + "('marriage', 1)\n", + "('hearse', 1)\n", + "('abstract', 1)\n", + "('somebody', 1)\n", + "('mutual', 1)\n", + "('brings', 1)\n", + "('loves', 3)\n", + "('increase', 1)\n", + "('cruelty', 3)\n", + "('knits', 1)\n", + "('snare', 1)\n", + "('spreads', 3)\n", + "('baits', 1)\n", + "('humility', 1)\n", + "('takes', 1)\n", + "('root', 1)\n", + "('foot', 2)\n", + "('dismal', 2)\n", + "('mystery', 3)\n", + "('caterpillar', 1)\n", + "('bears', 1)\n", + "('fruit', 1)\n", + "('deceit', 1)\n", + "('eat', 1)\n", + "('raven', 1)\n", + "('thickest', 1)\n", + "('gods', 1)\n", + "('sea', 1)\n", + "('nature', 1)\n", + "('find', 4)\n", + "('search', 1)\n", + "('grows', 1)\n", + "('one', 4)\n", + "('groaned', 1)\n", + "('dangerous', 1)\n", + "('world', 1)\n", + "('leapt', 1)\n", + "('helpless', 4)\n", + "('loud', 1)\n", + "('fiend', 2)\n", + "('struggling', 1)\n", + "('striving', 1)\n", + "('against', 1)\n", + "('swaddling', 1)\n", + "('bands', 2)\n", + "('best', 1)\n", + "('sulk', 1)\n", + "('poison', 2)\n", + "('angry', 2)\n", + "('friend', 1)\n", + "('foe', 3)\n", + "('sunned', 1)\n", + "('deceitful', 1)\n", + "('wiles', 1)\n", + "('grew', 1)\n", + "('apple', 1)\n", + "('beheld', 1)\n", + "('knew', 4)\n", + "('stole', 1)\n", + "('veiled', 1)\n", + "('glad', 1)\n", + "('outstretched', 1)\n", + "('nought', 1)\n", + "('venerates', 1)\n", + "('possible', 1)\n", + "('greater', 1)\n", + "('than', 1)\n", + "('bird', 2)\n", + "('picks', 1)\n", + "('crumbs', 1)\n", + "('sat', 4)\n", + "('zeal', 1)\n", + "('seized', 1)\n", + "('coat', 1)\n", + "('admired', 1)\n", + "('priestly', 1)\n", + "('standing', 1)\n", + "('altar', 1)\n", + "('lo', 1)\n", + "('sets', 1)\n", + "('reason', 2)\n", + "('judge', 1)\n", + "('stripped', 2)\n", + "('shirt', 1)\n", + "('iron', 2)\n", + "('burned', 2)\n", + "('place', 2)\n", + "(\"albion's\", 1)\n", + "('age', 2)\n", + "('reading', 1)\n", + "('indignant', 1)\n", + "('page', 1)\n", + "('former', 1)\n", + "('crime', 1)\n", + "('sunny', 2)\n", + "('pair', 1)\n", + "('met', 1)\n", + "('just', 1)\n", + "('removed', 1)\n", + "('curtains', 1)\n", + "('afar', 1)\n", + "('strangers', 1)\n", + "('forgot', 1)\n", + "('kisses', 2)\n", + "('agree', 1)\n", + "('waves', 1)\n", + "('wanderers', 1)\n", + "('loving', 1)\n", + "('limbs', 1)\n", + "('terror', 3)\n", + "('shook', 1)\n", + "('ona', 1)\n", + "('shakes', 1)\n", + "('hoary', 1)\n", + "('schoolboy', 1)\n", + "('summer', 4)\n", + "('singing', 1)\n", + "('huntsman', 1)\n", + "('winds', 1)\n", + "('sings', 1)\n", + "('company', 1)\n", + "('school', 1)\n", + "('drives', 1)\n", + "('outworn', 1)\n", + "('spend', 2)\n", + "('sighing', 1)\n", + "('dismay', 2)\n", + "('times', 1)\n", + "('drooping', 1)\n", + "('anxious', 1)\n", + "('hour', 2)\n", + "('take', 3)\n", + "(\"learning's\", 1)\n", + "('dreary', 1)\n", + "('shower', 1)\n", + "('cage', 1)\n", + "('annoy', 1)\n", + "('droop', 1)\n", + "('forget', 1)\n", + "('nipped', 1)\n", + "('plants', 1)\n", + "('springing', 1)\n", + "(\"care's\", 1)\n", + "('fruits', 2)\n", + "('appear', 2)\n", + "('gather', 1)\n", + "('griefs', 1)\n", + "('mellowing', 1)\n", + "('terzah', 1)\n", + "(\"whate'er\", 1)\n", + "('mortal', 4)\n", + "('birth', 1)\n", + "('consumed', 1)\n", + "('generation', 1)\n", + "('sexes', 2)\n", + "('sprang', 1)\n", + "('shame', 1)\n", + "('pride', 1)\n", + "('changed', 1)\n", + "('part', 2)\n", + "('didst', 3)\n", + "('mould', 1)\n", + "('false', 1)\n", + "('deceiving', 1)\n", + "('nostrils', 1)\n", + "('senseless', 1)\n", + "('betray', 1)\n", + "('jesus', 1)\n", + "('hither', 1)\n", + "('opening', 1)\n", + "('truth', 1)\n", + "('doubt', 1)\n", + "('disputes', 1)\n", + "('artful', 1)\n", + "('teazing', 1)\n", + "('folly', 1)\n", + "('endless', 1)\n", + "('maze', 1)\n", + "('tangled', 1)\n", + "('roots', 2)\n", + "('perplex', 1)\n", + "('stumble', 1)\n", + "('dead', 2)\n", + "('lead', 1)\n", + "('others', 1)\n", + "('appendix', 1)\n", + "('secresy', 1)\n", + "('fiery', 1)\n", + "('forge', 1)\n", + "('sealed', 1)\n", + "('hungry', 1)\n", + "('gorge', 1)\n", + "('note', 1)\n", + "('written', 1)\n", + "('engraved', 1)\n", + "('included', 1)\n", + "(\"blake's\", 1)\n", + "(\"thel's\", 1)\n", + "('motto', 1)\n", + "('eagle', 1)\n", + "('pit', 2)\n", + "('ask', 2)\n", + "('mole', 1)\n", + "('wisdom', 1)\n", + "('rod', 1)\n", + "('bowl', 1)\n", + "('author', 1)\n", + "('&', 17)\n", + "('printer', 1)\n", + "('willm', 1)\n", + "('1780', 1)\n", + "('daughters', 1)\n", + "('mne', 1)\n", + "('seraphim', 1)\n", + "('youngest', 1)\n", + "('paleness', 1)\n", + "('fade', 5)\n", + "('adona', 1)\n", + "('gentle', 5)\n", + "('lamentation', 1)\n", + "('falls', 1)\n", + "('lotus', 1)\n", + "('watry', 2)\n", + "('bow', 1)\n", + "('parting', 1)\n", + "('reflection', 1)\n", + "('glass', 1)\n", + "('doves', 1)\n", + "('transient', 1)\n", + "('music', 1)\n", + "('gently', 1)\n", + "('walketh', 1)\n", + "('lilly', 1)\n", + "('valley', 4)\n", + "('breathing', 2)\n", + "('answerd', 3)\n", + "('weed', 1)\n", + "('lowly', 3)\n", + "('gilded', 1)\n", + "('butterfly', 1)\n", + "('scarce', 1)\n", + "('perches', 1)\n", + "('visited', 1)\n", + "('walks', 1)\n", + "('brooks', 1)\n", + "('manna', 1)\n", + "('melts', 1)\n", + "('fountains', 1)\n", + "('springs', 3)\n", + "('flourish', 1)\n", + "('complain', 2)\n", + "('mistress', 1)\n", + "('har', 4)\n", + "('utter', 1)\n", + "('ceasd', 1)\n", + "('smild', 1)\n", + "('shrine', 1)\n", + "('peaceful', 1)\n", + "('giving', 1)\n", + "('those', 1)\n", + "('crave', 1)\n", + "('voiceless', 1)\n", + "('nourish', 1)\n", + "('smells', 1)\n", + "('milky', 2)\n", + "('garments', 1)\n", + "('crops', 1)\n", + "('sittest', 1)\n", + "('smiling', 1)\n", + "('meekin', 1)\n", + "('mouth', 1)\n", + "('contagious', 1)\n", + "('taints', 1)\n", + "('wine', 1)\n", + "('purify', 1)\n", + "('honey', 2)\n", + "('perfume', 1)\n", + "('which', 1)\n", + "('scatter', 1)\n", + "('blade', 1)\n", + "('revives', 1)\n", + "('milked', 1)\n", + "('cow', 1)\n", + "('tames', 1)\n", + "('steed', 1)\n", + "('faint', 1)\n", + "('kindled', 1)\n", + "('pearly', 1)\n", + "('throne', 2)\n", + "('answered', 2)\n", + "('glitters', 1)\n", + "('scatters', 1)\n", + "('thro', 1)\n", + "('humid', 1)\n", + "('descended', 1)\n", + "('bowd', 2)\n", + "('numerous', 1)\n", + "('charge', 2)\n", + "('verdant', 1)\n", + "('ii', 1)\n", + "('complainest', 1)\n", + "('pass', 2)\n", + "('shewd', 1)\n", + "(\"emerg'd\", 1)\n", + "('hovering', 1)\n", + "('glittering', 1)\n", + "(\"know'st\", 1)\n", + "('steeds', 1)\n", + "('luvah', 1)\n", + "('horses', 1)\n", + "('lookst', 1)\n", + "('fearest', 1)\n", + "('nothing', 2)\n", + "('remains', 1)\n", + "('tenfold', 1)\n", + "('raptures', 1)\n", + "('weigh', 1)\n", + "('balmy', 1)\n", + "('court', 1)\n", + "('fair', 1)\n", + "('eyed', 1)\n", + "('shining', 3)\n", + "('kneels', 1)\n", + "('risen', 1)\n", + "(\"link'd\", 1)\n", + "('band', 1)\n", + "('united', 1)\n", + "('bearing', 1)\n", + "('food', 4)\n", + "('smell', 1)\n", + "('sweetest', 1)\n", + "('warbling', 2)\n", + "('delights', 1)\n", + "('use', 2)\n", + "('women', 1)\n", + "(\"liv'd\", 1)\n", + "('worms', 3)\n", + "('reclind', 1)\n", + "('airy', 1)\n", + "('great', 2)\n", + "('lives', 2)\n", + "('alone', 1)\n", + "('pensive', 1)\n", + "('arose', 1)\n", + "('lillys', 2)\n", + "('leaf', 2)\n", + "('saild', 1)\n", + "('partner', 1)\n", + "('vale', 1)\n", + "('iii', 1)\n", + "(\"astonish'd\", 1)\n", + "(\"view'd\", 1)\n", + "('wrapped', 1)\n", + "(\"can'st\", 2)\n", + "('none', 3)\n", + "(\"rais'd\", 1)\n", + "('exhald', 1)\n", + "('fondness', 1)\n", + "(\"fix'd\", 1)\n", + "('ourselves', 1)\n", + "('seest', 1)\n", + "('meanest', 1)\n", + "('indeed', 1)\n", + "('pours', 1)\n", + "('oil', 2)\n", + "('binds', 1)\n", + "('nuptial', 1)\n", + "('says', 1)\n", + "('loved', 1)\n", + "('ponder', 2)\n", + "('daughter', 1)\n", + "(\"wip'd\", 1)\n", + "('veil', 1)\n", + "('alas', 1)\n", + "('therefore', 2)\n", + "('punish', 1)\n", + "('evil', 1)\n", + "('wilful', 1)\n", + "(\"bruis'd\", 1)\n", + "(\"cherish'd\", 1)\n", + "('milk', 1)\n", + "('complaind', 1)\n", + "('matron', 1)\n", + "('roof', 1)\n", + "(\"call'd\", 1)\n", + "('enter', 3)\n", + "('house', 1)\n", + "('tis', 1)\n", + "('iv', 1)\n", + "('terrific', 1)\n", + "('porter', 1)\n", + "('lifted', 1)\n", + "('northern', 1)\n", + "('bar', 1)\n", + "(\"enter'd\", 1)\n", + "('secrets', 1)\n", + "('unknown', 1)\n", + "('couches', 1)\n", + "('fibrous', 1)\n", + "('infixes', 1)\n", + "('restless', 1)\n", + "('twists', 1)\n", + "(\"thro'\", 1)\n", + "('listning', 2)\n", + "('dolors', 1)\n", + "('lamentations', 1)\n", + "('waiting', 1)\n", + "('oft', 1)\n", + "('grave', 2)\n", + "('silence', 1)\n", + "('plot', 1)\n", + "('breathed', 1)\n", + "('ear', 2)\n", + "('closed', 1)\n", + "('destruction', 1)\n", + "('glistening', 1)\n", + "('eyelids', 1)\n", + "('stord', 1)\n", + "('arrows', 1)\n", + "('drawn', 1)\n", + "('fighting', 1)\n", + "('ambush', 1)\n", + "('gifts', 1)\n", + "('graces', 1)\n", + "('showring', 1)\n", + "('coined', 1)\n", + "(\"impress'd\", 1)\n", + "('whirlpool', 1)\n", + "('fierce', 1)\n", + "('draw', 1)\n", + "('creations', 1)\n", + "('nostril', 1)\n", + "('wide', 1)\n", + "('inhaling', 1)\n", + "('affright', 1)\n", + "('curb', 1)\n", + "('curtain', 1)\n", + "('flesh', 1)\n", + "('started', 1)\n", + "('seat', 1)\n", + "('unhinderd', 1)\n" ] } ], "source": [ "# Counting words in blakepoems.txt.\n", - "fp = open( \"blakepoems.txt\")\n", - "\n" + "fp = open(\"text-files/blakepoems.txt\", \"r\")\n", + "read_text = fp.read()\n", + "fp.close()\n", + "def strip_all_but_alnum(text):\n", + " rmv_case_punctuation = text.lower().replace(\"[\", \" \").replace(\"]\", \" \").replace(\".\", \" \")\\\n", + " .replace(\",\", \" \").replace(\";\", \" \").replace(\":\", \" \").replace(\"\\\"\", \" \")\\\n", + " .replace(\"!\", \" \").replace(\"-\", \" \").replace(\"\\n\", \" \").replace(\"?\", \" \")\n", + " split_n_strip = [word.strip() for word in rmv_case_punctuation.split()]\n", + " return \" \".join(split_n_strip)\n", + "\n", + "def count_words(text):\n", + " filtered_text = strip_all_but_alnum(text)\n", + " word_dict = {}\n", + " for word in filtered_text.lower().split(\" \"):\n", + " if word in word_dict.keys():\n", + " word_dict[word]+= 1\n", + " else:\n", + " word_dict[word] = 1\n", + " return word_dict\n", + "\n", + "for word in count_words(read_text).items():\n", + " print(word)" ] }, { @@ -1958,11 +3527,1614 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 25, "metadata": {}, - "outputs": [], + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "('poems', 1)\n", + "('by', 24)\n", + "('william', 2)\n", + "('blake', 3)\n", + "('1789', 1)\n", + "('you', 10)\n", + "('can', 27)\n", + "('do', 9)\n", + "('this', 16)\n", + "('songs', 7)\n", + "('of', 146)\n", + "('innocence', 3)\n", + "('and', 348)\n", + "('experience', 3)\n", + "('the', 439)\n", + "('book', 6)\n", + "('thel', 15)\n", + "('introduction', 2)\n", + "('piping', 3)\n", + "('down', 20)\n", + "('valleys', 4)\n", + "('wild', 9)\n", + "('pleasant', 5)\n", + "('glee', 1)\n", + "('on', 44)\n", + "('a', 128)\n", + "('cloud', 15)\n", + "('i', 125)\n", + "('saw', 7)\n", + "('child', 18)\n", + "('he', 54)\n", + "('laughing', 5)\n", + "('said', 8)\n", + "('to', 111)\n", + "('me', 34)\n", + "('pipe', 4)\n", + "('song', 10)\n", + "('about', 1)\n", + "('lamb', 14)\n", + "('so', 21)\n", + "('piped', 2)\n", + "('with', 66)\n", + "('merry', 9)\n", + "('cheer', 2)\n", + "('piper', 2)\n", + "('that', 39)\n", + "('again', 3)\n", + "('wept', 9)\n", + "('hear', 16)\n", + "('drop', 1)\n", + "('thy', 31)\n", + "('happy', 19)\n", + "('sing', 11)\n", + "('sang', 2)\n", + "('same', 1)\n", + "('while', 14)\n", + "('joy', 25)\n", + "('sit', 12)\n", + "('thee', 42)\n", + "('write', 1)\n", + "('in', 141)\n", + "('all', 39)\n", + "('may', 6)\n", + "('read', 2)\n", + "(\"vanish'd\", 1)\n", + "('from', 32)\n", + "('my', 83)\n", + "('sight', 2)\n", + "(\"pluck'd\", 1)\n", + "('hollow', 3)\n", + "('reed', 1)\n", + "('made', 6)\n", + "('rural', 1)\n", + "('pen', 1)\n", + "(\"stain'd\", 1)\n", + "('water', 3)\n", + "('clear', 1)\n", + "('wrote', 1)\n", + "('every', 17)\n", + "('shepherd', 2)\n", + "('how', 14)\n", + "('sweet', 28)\n", + "('is', 52)\n", + "(\"shepherd's\", 1)\n", + "('lot', 2)\n", + "('morn', 8)\n", + "('evening', 5)\n", + "('stays', 1)\n", + "('shall', 19)\n", + "('follow', 3)\n", + "('his', 57)\n", + "('sheep', 4)\n", + "('day', 19)\n", + "('tongue', 4)\n", + "('be', 25)\n", + "('filled', 6)\n", + "('praise', 2)\n", + "('for', 32)\n", + "('hears', 4)\n", + "(\"lambs'\", 1)\n", + "('innocent', 4)\n", + "('call', 4)\n", + "(\"ewes'\", 1)\n", + "('tender', 9)\n", + "('reply', 1)\n", + "('watching', 1)\n", + "('they', 44)\n", + "('are', 25)\n", + "('peace', 9)\n", + "('know', 10)\n", + "('when', 28)\n", + "('their', 34)\n", + "('nigh', 2)\n", + "('echoing', 3)\n", + "('green', 16)\n", + "('sun', 11)\n", + "('does', 18)\n", + "('arise', 9)\n", + "('make', 5)\n", + "('skies', 4)\n", + "('bells', 1)\n", + "('ring', 1)\n", + "('welcome', 4)\n", + "('spring', 8)\n", + "('skylark', 2)\n", + "('thrush', 1)\n", + "('birds', 10)\n", + "('bush', 1)\n", + "('louder', 1)\n", + "('around', 5)\n", + "(\"bells'\", 1)\n", + "('cheerful', 1)\n", + "('sound', 2)\n", + "('our', 22)\n", + "('sports', 2)\n", + "('seen', 6)\n", + "('old', 6)\n", + "('john', 1)\n", + "('white', 12)\n", + "('hair', 6)\n", + "('laugh', 6)\n", + "('away', 24)\n", + "('care', 11)\n", + "('sitting', 2)\n", + "('under', 4)\n", + "('oak', 1)\n", + "('among', 8)\n", + "('folk', 1)\n", + "('at', 7)\n", + "('play', 9)\n", + "('soon', 5)\n", + "('say', 7)\n", + "('such', 6)\n", + "('were', 10)\n", + "('joys', 3)\n", + "('we', 14)\n", + "('girls', 2)\n", + "('boys', 2)\n", + "('youth', 8)\n", + "('time', 5)\n", + "('till', 15)\n", + "('little', 45)\n", + "('ones', 3)\n", + "('weary', 5)\n", + "('no', 18)\n", + "('more', 9)\n", + "('descend', 2)\n", + "('have', 17)\n", + "('an', 21)\n", + "('end', 2)\n", + "('round', 9)\n", + "('laps', 1)\n", + "('mothers', 2)\n", + "('many', 7)\n", + "('sisters', 1)\n", + "('brothers', 2)\n", + "('like', 35)\n", + "('nest', 4)\n", + "('ready', 2)\n", + "('rest', 3)\n", + "('sport', 2)\n", + "('darkening', 1)\n", + "('who', 18)\n", + "('dost', 5)\n", + "('thou', 35)\n", + "('gave', 3)\n", + "('life', 7)\n", + "('bid', 1)\n", + "('feed', 4)\n", + "('stream', 2)\n", + "(\"o'er\", 12)\n", + "('mead', 1)\n", + "('clothing', 2)\n", + "('delight', 14)\n", + "('softest', 2)\n", + "('wolly', 1)\n", + "('bright', 15)\n", + "('voice', 16)\n", + "('making', 2)\n", + "('vales', 9)\n", + "('rejoice', 2)\n", + "(\"i'll\", 4)\n", + "('tell', 6)\n", + "('called', 2)\n", + "('name', 5)\n", + "('calls', 2)\n", + "('himself', 1)\n", + "('meek', 2)\n", + "('mild', 7)\n", + "('became', 2)\n", + "('god', 11)\n", + "('bless', 3)\n", + "('black', 8)\n", + "('boy', 11)\n", + "('mother', 17)\n", + "('bore', 7)\n", + "('southern', 2)\n", + "('am', 16)\n", + "('but', 38)\n", + "('oh', 11)\n", + "('soul', 2)\n", + "('as', 16)\n", + "('angel', 9)\n", + "('english', 2)\n", + "('if', 17)\n", + "('bereaved', 1)\n", + "('light', 11)\n", + "('taught', 2)\n", + "('underneath', 3)\n", + "('tree', 10)\n", + "('before', 7)\n", + "('heat', 5)\n", + "('she', 15)\n", + "('took', 2)\n", + "('her', 34)\n", + "('lap', 1)\n", + "('kissed', 3)\n", + "('pointed', 1)\n", + "('east', 1)\n", + "('began', 3)\n", + "('look', 5)\n", + "('rising', 4)\n", + "('there', 11)\n", + "('live', 6)\n", + "('gives', 4)\n", + "('flowers', 9)\n", + "('trees', 1)\n", + "('beasts', 2)\n", + "('men', 4)\n", + "('receive', 2)\n", + "('comfort', 1)\n", + "('morning', 10)\n", + "('noonday', 1)\n", + "('put', 2)\n", + "('earth', 9)\n", + "('space', 1)\n", + "('learn', 1)\n", + "('bear', 5)\n", + "('beams', 3)\n", + "('love', 29)\n", + "('these', 6)\n", + "('bodies', 1)\n", + "('sunburnt', 1)\n", + "('face', 12)\n", + "('shady', 1)\n", + "('grove', 3)\n", + "('souls', 2)\n", + "(\"learn'd\", 1)\n", + "('will', 3)\n", + "('vanish', 3)\n", + "('saying', 3)\n", + "(\"'come\", 1)\n", + "('out', 5)\n", + "('golden', 8)\n", + "('tent', 3)\n", + "('lambs', 4)\n", + "(\"rejoice'\", 1)\n", + "('thus', 4)\n", + "('did', 12)\n", + "('free', 6)\n", + "('shade', 6)\n", + "('him', 11)\n", + "('lean', 1)\n", + "('upon', 14)\n", + "(\"father's\", 2)\n", + "('knee', 1)\n", + "('then', 30)\n", + "('stand', 2)\n", + "('stroke', 1)\n", + "('silver', 3)\n", + "('blossom', 4)\n", + "('sparrow', 1)\n", + "('leaves', 2)\n", + "('sees', 2)\n", + "('swift', 1)\n", + "('arrow', 1)\n", + "('seek', 6)\n", + "('your', 11)\n", + "('cradle', 2)\n", + "('narrow', 1)\n", + "('near', 6)\n", + "('bosom', 4)\n", + "('pretty', 8)\n", + "('robin', 2)\n", + "('sobbing', 2)\n", + "('chimney', 3)\n", + "('sweeper', 2)\n", + "('died', 2)\n", + "('was', 30)\n", + "('very', 3)\n", + "('young', 1)\n", + "('father', 20)\n", + "('sold', 1)\n", + "('yet', 5)\n", + "('could', 6)\n", + "('scarcely', 1)\n", + "('cry', 7)\n", + "('weep', 24)\n", + "('chimneys', 1)\n", + "('sweep', 1)\n", + "('soot', 2)\n", + "('sleep', 21)\n", + "(\"there's\", 1)\n", + "('tom', 6)\n", + "('dacre', 1)\n", + "('cried', 1)\n", + "('head', 13)\n", + "('curled', 1)\n", + "(\"lamb's\", 1)\n", + "('back', 3)\n", + "('shaved', 1)\n", + "('hush', 1)\n", + "('never', 17)\n", + "('mind', 5)\n", + "('it', 28)\n", + "(\"head's\", 1)\n", + "('bare', 2)\n", + "('cannot', 6)\n", + "('spoil', 1)\n", + "('quiet', 1)\n", + "('night', 28)\n", + "('sleeping', 7)\n", + "('had', 7)\n", + "('thousands', 2)\n", + "('sweepers', 1)\n", + "('dick', 1)\n", + "('joe', 1)\n", + "('ned', 1)\n", + "('jack', 1)\n", + "('them', 8)\n", + "('locked', 1)\n", + "('up', 6)\n", + "('coffins', 2)\n", + "('came', 9)\n", + "('key', 1)\n", + "('opened', 1)\n", + "('let', 7)\n", + "('plain', 1)\n", + "('leaping', 1)\n", + "('run', 1)\n", + "('wash', 1)\n", + "('river', 3)\n", + "('shine', 6)\n", + "('naked', 5)\n", + "('bags', 2)\n", + "('left', 1)\n", + "('behind', 1)\n", + "('rise', 4)\n", + "('clouds', 3)\n", + "('wind', 3)\n", + "('told', 5)\n", + "(\"he'd\", 2)\n", + "('good', 1)\n", + "('want', 2)\n", + "('awoke', 1)\n", + "('rose', 9)\n", + "('dark', 7)\n", + "('got', 1)\n", + "('brushes', 1)\n", + "('work', 3)\n", + "('though', 2)\n", + "('cold', 7)\n", + "('warm', 3)\n", + "('duty', 1)\n", + "('need', 1)\n", + "('not', 37)\n", + "('fear', 11)\n", + "('harm', 2)\n", + "('lost', 8)\n", + "('where', 25)\n", + "('going', 1)\n", + "('walk', 3)\n", + "('fast', 1)\n", + "('speak', 4)\n", + "('or', 21)\n", + "('else', 2)\n", + "('wet', 1)\n", + "('dew', 4)\n", + "('mire', 1)\n", + "('deep', 8)\n", + "('vapour', 1)\n", + "('flew', 2)\n", + "('found', 3)\n", + "('lonely', 3)\n", + "('fen', 1)\n", + "('led', 6)\n", + "('wandering', 1)\n", + "('ever', 4)\n", + "('appeared', 1)\n", + "('hand', 9)\n", + "('brought', 1)\n", + "('sorrow', 9)\n", + "('pale', 5)\n", + "('through', 7)\n", + "('dale', 3)\n", + "('weeping', 14)\n", + "('sought', 3)\n", + "('woods', 1)\n", + "('dimpling', 1)\n", + "('runs', 2)\n", + "('air', 6)\n", + "('wit', 1)\n", + "('hill', 2)\n", + "('laughs', 2)\n", + "('noise', 2)\n", + "('meadows', 1)\n", + "('lively', 1)\n", + "('grasshopper', 1)\n", + "('scene', 1)\n", + "('mary', 1)\n", + "('susan', 1)\n", + "('emily', 1)\n", + "('mouths', 1)\n", + "('ha', 4)\n", + "('painted', 1)\n", + "('table', 1)\n", + "('cherries', 1)\n", + "('nuts', 1)\n", + "('spread', 1)\n", + "('come', 10)\n", + "('join', 1)\n", + "('chorus', 1)\n", + "('dreams', 3)\n", + "('form', 8)\n", + "('lovely', 4)\n", + "(\"infant's\", 4)\n", + "('streams', 1)\n", + "('silent', 8)\n", + "('moony', 1)\n", + "('soft', 5)\n", + "('weave', 2)\n", + "('brows', 1)\n", + "('infant', 12)\n", + "('crown', 3)\n", + "('hover', 3)\n", + "('smiles', 11)\n", + "('over', 8)\n", + "(\"mother's\", 2)\n", + "('smile', 8)\n", + "('livelong', 2)\n", + "('beguile', 2)\n", + "('moans', 3)\n", + "('dovelike', 2)\n", + "('sighs', 2)\n", + "('chase', 1)\n", + "('slumber', 1)\n", + "('thine', 2)\n", + "('eyes', 9)\n", + "('moan', 3)\n", + "('sweeter', 1)\n", + "('creation', 1)\n", + "('slept', 1)\n", + "('smiled', 2)\n", + "('doth', 7)\n", + "('babe', 2)\n", + "('holy', 13)\n", + "('image', 8)\n", + "('trace', 1)\n", + "('once', 4)\n", + "('maker', 4)\n", + "('lay', 10)\n", + "('small', 7)\n", + "('see', 16)\n", + "('heavenly', 1)\n", + "('own', 4)\n", + "('heaven', 7)\n", + "('beguiles', 1)\n", + "('divine', 6)\n", + "('mercy', 8)\n", + "('pity', 9)\n", + "('pray', 3)\n", + "('distress', 2)\n", + "('virtues', 1)\n", + "('return', 4)\n", + "('thankfulness', 1)\n", + "('dear', 3)\n", + "('man', 6)\n", + "('has', 5)\n", + "('human', 16)\n", + "('heart', 10)\n", + "('dress', 4)\n", + "('clime', 3)\n", + "('prays', 2)\n", + "('must', 3)\n", + "('heathen', 1)\n", + "('turk', 1)\n", + "('jew', 1)\n", + "('dwell', 3)\n", + "('dwelling', 1)\n", + "('too', 3)\n", + "('thursday', 3)\n", + "(\"'twas\", 1)\n", + "('faces', 1)\n", + "('clean', 1)\n", + "('children', 12)\n", + "('walking', 3)\n", + "('two', 4)\n", + "('blue', 1)\n", + "('grey', 3)\n", + "('headed', 1)\n", + "('beadles', 1)\n", + "('walked', 2)\n", + "('wands', 1)\n", + "('snow', 4)\n", + "('into', 5)\n", + "('high', 3)\n", + "('dome', 1)\n", + "(\"paul's\", 1)\n", + "('thames', 2)\n", + "('waters', 2)\n", + "('flow', 3)\n", + "('what', 26)\n", + "('multitude', 1)\n", + "('seemed', 1)\n", + "('london', 2)\n", + "('town', 1)\n", + "('seated', 1)\n", + "('companies', 1)\n", + "('radiance', 1)\n", + "('hum', 2)\n", + "('multitudes', 2)\n", + "('raising', 1)\n", + "('hands', 3)\n", + "('now', 7)\n", + "('mighty', 1)\n", + "('raise', 1)\n", + "('harmonious', 1)\n", + "('thunderings', 1)\n", + "('seats', 1)\n", + "('beneath', 2)\n", + "('aged', 1)\n", + "('wise', 1)\n", + "('guardians', 1)\n", + "('poor', 4)\n", + "('cherish', 2)\n", + "('lest', 1)\n", + "('drive', 2)\n", + "('door', 3)\n", + "('descending', 2)\n", + "('west', 1)\n", + "('star', 1)\n", + "('mine', 2)\n", + "('moon', 2)\n", + "('flower', 5)\n", + "(\"heaven's\", 3)\n", + "('bower', 2)\n", + "('sits', 2)\n", + "('farewell', 1)\n", + "('fields', 2)\n", + "('flocks', 2)\n", + "(\"ta'en\", 1)\n", + "('nibbled', 1)\n", + "('move', 1)\n", + "('feet', 5)\n", + "('angels', 2)\n", + "('unseen', 2)\n", + "('pour', 2)\n", + "('blessing', 2)\n", + "('without', 2)\n", + "('ceasing', 1)\n", + "('each', 5)\n", + "('bud', 1)\n", + "('thoughtless', 2)\n", + "('covered', 3)\n", + "('visit', 1)\n", + "('caves', 2)\n", + "('beast', 1)\n", + "('keep', 3)\n", + "('any', 3)\n", + "('should', 6)\n", + "('been', 2)\n", + "('bed', 8)\n", + "('wolves', 1)\n", + "('tigers', 3)\n", + "('howl', 2)\n", + "('prey', 3)\n", + "('pitying', 5)\n", + "('seeking', 2)\n", + "('thirst', 1)\n", + "('rush', 1)\n", + "('dreadful', 1)\n", + "('most', 3)\n", + "('heedful', 1)\n", + "('spirit', 2)\n", + "('new', 4)\n", + "('worlds', 1)\n", + "('inherit', 1)\n", + "(\"lion's\", 2)\n", + "('ruddy', 2)\n", + "('tears', 12)\n", + "('gold', 6)\n", + "('cries', 1)\n", + "('fold', 2)\n", + "('wrath', 4)\n", + "('meekness', 1)\n", + "('health', 1)\n", + "('sickness', 1)\n", + "('driven', 2)\n", + "('immortal', 3)\n", + "('beside', 4)\n", + "('bleating', 1)\n", + "('lie', 2)\n", + "('think', 4)\n", + "('graze', 1)\n", + "('after', 2)\n", + "('washed', 1)\n", + "(\"life's\", 1)\n", + "('mane', 3)\n", + "('guard', 1)\n", + "('flute', 1)\n", + "(\"it's\", 1)\n", + "('mute', 1)\n", + "(\"bird's\", 2)\n", + "('nightingale', 1)\n", + "('lark', 1)\n", + "('sky', 3)\n", + "('merrily', 7)\n", + "('year', 5)\n", + "('full', 1)\n", + "('girl', 4)\n", + "('cock', 1)\n", + "('crow', 1)\n", + "('here', 2)\n", + "('lick', 2)\n", + "('neck', 2)\n", + "('pull', 1)\n", + "('wool', 1)\n", + "('kiss', 2)\n", + "(\"nurse's\", 2)\n", + "('voices', 3)\n", + "('heard', 12)\n", + "('within', 1)\n", + "('breast', 5)\n", + "('everything', 1)\n", + "('still', 1)\n", + "('home', 4)\n", + "('gone', 6)\n", + "('dews', 2)\n", + "('leave', 2)\n", + "('off', 1)\n", + "('us', 5)\n", + "('appears', 1)\n", + "('go', 8)\n", + "('besides', 2)\n", + "('fly', 7)\n", + "('hills', 2)\n", + "('well', 3)\n", + "('fades', 3)\n", + "('leaped', 1)\n", + "('shouted', 1)\n", + "('laughed', 1)\n", + "('echoed', 1)\n", + "('days', 4)\n", + "('befall', 2)\n", + "('dream', 4)\n", + "('guarded', 2)\n", + "('emmet', 1)\n", + "('its', 14)\n", + "('way', 2)\n", + "('grass', 7)\n", + "('methought', 1)\n", + "('troubled', 1)\n", + "('wildered', 1)\n", + "('forlorn', 1)\n", + "('benighted', 1)\n", + "('travel', 1)\n", + "('worn', 3)\n", + "('tangle', 1)\n", + "('spray', 1)\n", + "('broke', 1)\n", + "('sigh', 5)\n", + "('abroad', 1)\n", + "('dropped', 1)\n", + "('tear', 6)\n", + "('glow', 1)\n", + "('worm', 10)\n", + "('replied', 1)\n", + "('wailing', 1)\n", + "('wight', 1)\n", + "('watchman', 1)\n", + "('set', 2)\n", + "('ground', 5)\n", + "('beetle', 1)\n", + "('goes', 1)\n", + "(\"beetle's\", 1)\n", + "('wanderer', 1)\n", + "('hie', 1)\n", + "(\"another's\", 4)\n", + "('woe', 9)\n", + "('grief', 4)\n", + "('kind', 1)\n", + "('relief', 1)\n", + "('falling', 1)\n", + "('feel', 3)\n", + "(\"sorrow's\", 1)\n", + "('share', 1)\n", + "('nor', 15)\n", + "('groan', 1)\n", + "('wren', 1)\n", + "('sorrows', 2)\n", + "('woes', 1)\n", + "('infants', 3)\n", + "('next', 1)\n", + "('pouring', 1)\n", + "('both', 6)\n", + "('wiping', 2)\n", + "('give', 3)\n", + "('becomes', 2)\n", + "('canst', 2)\n", + "('destroy', 3)\n", + "('fled', 6)\n", + "('bard', 2)\n", + "('present', 1)\n", + "('past', 1)\n", + "('future', 2)\n", + "('whose', 1)\n", + "('ears', 2)\n", + "('word', 1)\n", + "('ancient', 3)\n", + "('calling', 1)\n", + "('lapsed', 1)\n", + "('might', 2)\n", + "('control', 1)\n", + "('starry', 3)\n", + "('pole', 2)\n", + "('fallen', 3)\n", + "('renew', 2)\n", + "('o', 13)\n", + "('dewy', 3)\n", + "('rises', 1)\n", + "('slumbrous', 1)\n", + "('mass', 1)\n", + "('turn', 2)\n", + "('why', 15)\n", + "('wilt', 3)\n", + "('floor', 1)\n", + "('watery', 2)\n", + "('shore', 3)\n", + "('given', 3)\n", + "('break', 2)\n", + "(\"earth's\", 1)\n", + "('answer', 2)\n", + "('raised', 1)\n", + "('darkness', 2)\n", + "('dread', 5)\n", + "('drear', 1)\n", + "('stony', 1)\n", + "('locks', 1)\n", + "('despair', 2)\n", + "('prisoned', 1)\n", + "('jealousy', 3)\n", + "('den', 1)\n", + "('hoar', 1)\n", + "(\"o're\", 1)\n", + "('selfish', 4)\n", + "('cruel', 2)\n", + "('jealous', 1)\n", + "('chained', 1)\n", + "('virgins', 1)\n", + "('hide', 1)\n", + "('buds', 2)\n", + "('blossoms', 3)\n", + "('grow', 2)\n", + "('sower', 1)\n", + "('sow', 1)\n", + "('plowman', 1)\n", + "('plough', 1)\n", + "('heavy', 2)\n", + "('chain', 3)\n", + "('freeze', 1)\n", + "('bones', 2)\n", + "('vain', 6)\n", + "('eternal', 4)\n", + "('bane', 1)\n", + "('bondage', 1)\n", + "('bound', 3)\n", + "('clod', 3)\n", + "('pebble', 2)\n", + "('seeketh', 2)\n", + "('itself', 7)\n", + "('please', 2)\n", + "('hath', 1)\n", + "('another', 4)\n", + "('ease', 2)\n", + "('builds', 2)\n", + "(\"hell's\", 1)\n", + "('clay', 4)\n", + "('trodden', 1)\n", + "(\"cattle's\", 1)\n", + "('brook', 1)\n", + "('warbled', 1)\n", + "('metres', 1)\n", + "('meet', 3)\n", + "('only', 3)\n", + "('self', 2)\n", + "('bind', 2)\n", + "('loss', 1)\n", + "('hell', 1)\n", + "('despite', 1)\n", + "('thing', 5)\n", + "('rich', 1)\n", + "('fruitful', 1)\n", + "('land', 5)\n", + "('babes', 2)\n", + "('reduced', 1)\n", + "('misery', 2)\n", + "('fed', 2)\n", + "('usurous', 1)\n", + "('trembling', 6)\n", + "('poverty', 2)\n", + "('son', 1)\n", + "('bleak', 1)\n", + "('ways', 4)\n", + "('thorns', 3)\n", + "('winter', 3)\n", + "(\"where'er\", 2)\n", + "('rain', 1)\n", + "('fall', 2)\n", + "('hunger', 1)\n", + "('appall', 1)\n", + "('futurity', 1)\n", + "('prophetic', 1)\n", + "('(grave', 1)\n", + "('sentence', 1)\n", + "('deep)', 1)\n", + "('desert', 5)\n", + "('become', 1)\n", + "('garden', 7)\n", + "(\"summer's\", 2)\n", + "('prime', 1)\n", + "('lyca', 8)\n", + "('seven', 3)\n", + "('summers', 2)\n", + "('wandered', 3)\n", + "('long', 1)\n", + "('hearing', 1)\n", + "(\"birds'\", 1)\n", + "('ache', 1)\n", + "('wake', 1)\n", + "('frowning', 2)\n", + "('close', 2)\n", + "('caverns', 1)\n", + "('viewed', 2)\n", + "('maid', 7)\n", + "('asleep', 2)\n", + "('kingly', 1)\n", + "('lion', 3)\n", + "('stood', 2)\n", + "('virgin', 9)\n", + "('gambolled', 1)\n", + "('hallowed', 1)\n", + "('leopards', 1)\n", + "('bowed', 1)\n", + "('flame', 1)\n", + "('ruby', 1)\n", + "('lioness', 1)\n", + "('loosed', 1)\n", + "('slender', 1)\n", + "('conveyed', 1)\n", + "(\"lyca's\", 1)\n", + "('parents', 4)\n", + "('deserts', 1)\n", + "('tired', 4)\n", + "('begone', 1)\n", + "('hoarse', 1)\n", + "('arm', 2)\n", + "('traced', 1)\n", + "('nights', 1)\n", + "('shadows', 2)\n", + "('starved', 1)\n", + "('pathless', 1)\n", + "('fancied', 1)\n", + "('strays', 1)\n", + "('famished', 1)\n", + "('weak', 4)\n", + "('piteous', 1)\n", + "('shriek', 2)\n", + "('unrest', 1)\n", + "('woman', 1)\n", + "('presse', 1)\n", + "('further', 1)\n", + "('arms', 1)\n", + "('armed', 4)\n", + "('sore', 1)\n", + "('couching', 1)\n", + "('turning', 1)\n", + "('stalked', 1)\n", + "('smelling', 1)\n", + "('fears', 5)\n", + "('allay', 1)\n", + "('licks', 1)\n", + "('stands', 1)\n", + "('surprise', 1)\n", + "('wondering', 1)\n", + "('behold', 1)\n", + "('shoulders', 1)\n", + "('flowed', 1)\n", + "('palace', 2)\n", + "('lies', 1)\n", + "('followed', 1)\n", + "('vision', 1)\n", + "('dell', 1)\n", + "('wolvish', 1)\n", + "('growl', 1)\n", + "('crying', 1)\n", + "('notes', 2)\n", + "('church', 6)\n", + "('because', 5)\n", + "('heath', 2)\n", + "(\"winter's\", 2)\n", + "('clothed', 2)\n", + "('clothes', 1)\n", + "('death', 6)\n", + "('dance', 2)\n", + "('done', 3)\n", + "('injury', 1)\n", + "('priest', 2)\n", + "('king', 1)\n", + "('whisperings', 1)\n", + "('fresh', 1)\n", + "('turns', 1)\n", + "('wasted', 1)\n", + "('disguise', 1)\n", + "('sick', 2)\n", + "('art', 6)\n", + "('invisible', 1)\n", + "('flies', 1)\n", + "('howling', 1)\n", + "('storm', 1)\n", + "('crimson', 1)\n", + "('secret', 2)\n", + "('brushed', 1)\n", + "('drink', 4)\n", + "('some', 2)\n", + "('blind', 1)\n", + "('brush', 1)\n", + "('wing', 2)\n", + "('thought', 5)\n", + "('strength', 1)\n", + "('breath', 2)\n", + "('die', 1)\n", + "('dreamt', 1)\n", + "('mean', 1)\n", + "('maiden', 4)\n", + "('queen', 5)\n", + "('witless', 1)\n", + "(\"ne'er\", 1)\n", + "('beguiled', 2)\n", + "('wiped', 1)\n", + "('hid', 2)\n", + "(\"heart's\", 1)\n", + "('wings', 3)\n", + "('blushed', 1)\n", + "('rosy', 1)\n", + "('red', 1)\n", + "('dried', 1)\n", + "('ten', 1)\n", + "('thousand', 2)\n", + "('shields', 1)\n", + "('spears', 2)\n", + "('hairs', 1)\n", + "('tiger', 5)\n", + "('burning', 3)\n", + "('forest', 1)\n", + "('eye', 5)\n", + "('frame', 2)\n", + "('fearful', 2)\n", + "('symmetry', 2)\n", + "('distant', 2)\n", + "('deeps', 1)\n", + "('burnt', 1)\n", + "('fire', 4)\n", + "('dare', 4)\n", + "('aspire', 2)\n", + "('seize', 1)\n", + "('shoulder', 1)\n", + "('twist', 1)\n", + "('sinews', 1)\n", + "('beat', 1)\n", + "('hammer', 1)\n", + "('furnace', 2)\n", + "('brain', 2)\n", + "('anvil', 1)\n", + "('grasp', 1)\n", + "('deadly', 1)\n", + "('terrors', 1)\n", + "('clasp', 1)\n", + "('stars', 1)\n", + "('threw', 1)\n", + "('watered', 2)\n", + "('forests', 1)\n", + "('offered', 1)\n", + "(\"i've\", 1)\n", + "('passed', 1)\n", + "('went', 4)\n", + "('tend', 1)\n", + "('turned', 2)\n", + "('ah', 7)\n", + "('sunflower', 3)\n", + "('countest', 1)\n", + "('steps', 1)\n", + "(\"traveller's\", 1)\n", + "('journey', 1)\n", + "('pined', 1)\n", + "('desire', 2)\n", + "('shrouded', 1)\n", + "('graves', 2)\n", + "('wishes', 1)\n", + "('lily', 5)\n", + "('modest', 4)\n", + "('puts', 1)\n", + "('forth', 2)\n", + "('thorn', 2)\n", + "('humble', 4)\n", + "(\"threat'ning\", 1)\n", + "('horn', 2)\n", + "('threat', 1)\n", + "('stain', 1)\n", + "('beauty', 5)\n", + "('laid', 1)\n", + "('bank', 1)\n", + "('rushes', 1)\n", + "('dank', 1)\n", + "('thistles', 1)\n", + "('waste', 1)\n", + "('compelled', 1)\n", + "('chaste', 1)\n", + "('chapel', 2)\n", + "('built', 1)\n", + "('midst', 1)\n", + "('used', 2)\n", + "('gates', 2)\n", + "('shut', 1)\n", + "('shalt', 2)\n", + "('writ', 1)\n", + "('tombstones', 1)\n", + "('priests', 1)\n", + "('gowns', 1)\n", + "('rounds', 1)\n", + "('binding', 1)\n", + "('briars', 1)\n", + "('desires', 1)\n", + "('vagabond', 1)\n", + "('alehouse', 1)\n", + "('healthy', 1)\n", + "('parsons', 1)\n", + "('blown', 3)\n", + "('bladder', 1)\n", + "('swell', 1)\n", + "('would', 5)\n", + "('ale', 1)\n", + "('regale', 1)\n", + "(\"we'd\", 3)\n", + "('wish', 2)\n", + "('stray', 1)\n", + "('parson', 1)\n", + "('preach', 1)\n", + "('dame', 1)\n", + "('lurch', 1)\n", + "('always', 1)\n", + "('bandy', 1)\n", + "('fasting', 1)\n", + "('birch', 1)\n", + "('rejoicing', 1)\n", + "('quarrel', 1)\n", + "('devil', 1)\n", + "('barrel', 1)\n", + "('apparel', 1)\n", + "('chartered', 2)\n", + "('street', 1)\n", + "('mark', 1)\n", + "('marks', 2)\n", + "('weakness', 2)\n", + "('ban', 1)\n", + "('forged', 2)\n", + "('manacles', 1)\n", + "(\"sweeper's\", 1)\n", + "('blackening', 1)\n", + "('appals', 1)\n", + "('hapless', 1)\n", + "(\"soldier's\", 1)\n", + "('blood', 1)\n", + "('walls', 1)\n", + "('midnight', 1)\n", + "('streets', 1)\n", + "('youthful', 4)\n", + "(\"harlot's\", 1)\n", + "('curse', 1)\n", + "('blasts', 2)\n", + "('born', 6)\n", + "('blights', 1)\n", + "('plagues', 1)\n", + "('marriage', 1)\n", + "('hearse', 1)\n", + "('abstract', 1)\n", + "('somebody', 1)\n", + "('mutual', 1)\n", + "('brings', 1)\n", + "('loves', 3)\n", + "('increase', 1)\n", + "('cruelty', 3)\n", + "('knits', 1)\n", + "('snare', 1)\n", + "('spreads', 3)\n", + "('baits', 1)\n", + "('humility', 1)\n", + "('takes', 1)\n", + "('root', 1)\n", + "('foot', 2)\n", + "('dismal', 2)\n", + "('mystery', 3)\n", + "('caterpillar', 1)\n", + "('bears', 1)\n", + "('fruit', 1)\n", + "('deceit', 1)\n", + "('eat', 1)\n", + "('raven', 1)\n", + "('thickest', 1)\n", + "('gods', 1)\n", + "('sea', 1)\n", + "('nature', 1)\n", + "('find', 4)\n", + "('search', 1)\n", + "('grows', 1)\n", + "('one', 4)\n", + "('groaned', 1)\n", + "('dangerous', 1)\n", + "('world', 1)\n", + "('leapt', 1)\n", + "('helpless', 4)\n", + "('loud', 1)\n", + "('fiend', 2)\n", + "('struggling', 1)\n", + "('striving', 1)\n", + "('against', 1)\n", + "('swaddling', 1)\n", + "('bands', 2)\n", + "('best', 1)\n", + "('sulk', 1)\n", + "('poison', 2)\n", + "('angry', 2)\n", + "('friend', 1)\n", + "('foe', 3)\n", + "('sunned', 1)\n", + "('deceitful', 1)\n", + "('wiles', 1)\n", + "('grew', 1)\n", + "('apple', 1)\n", + "('beheld', 1)\n", + "('knew', 4)\n", + "('stole', 1)\n", + "('veiled', 1)\n", + "('glad', 1)\n", + "('outstretched', 1)\n", + "('nought', 1)\n", + "('venerates', 1)\n", + "('possible', 1)\n", + "('greater', 1)\n", + "('than', 1)\n", + "('bird', 2)\n", + "('picks', 1)\n", + "('crumbs', 1)\n", + "('sat', 4)\n", + "('zeal', 1)\n", + "('seized', 1)\n", + "('coat', 1)\n", + "('admired', 1)\n", + "('priestly', 1)\n", + "('standing', 1)\n", + "('altar', 1)\n", + "('lo', 1)\n", + "('sets', 1)\n", + "('reason', 2)\n", + "('judge', 1)\n", + "('stripped', 2)\n", + "('shirt', 1)\n", + "('iron', 2)\n", + "('burned', 2)\n", + "('place', 2)\n", + "(\"albion's\", 1)\n", + "('age', 2)\n", + "('reading', 1)\n", + "('indignant', 1)\n", + "('page', 1)\n", + "('former', 1)\n", + "('crime', 1)\n", + "('sunny', 2)\n", + "('pair', 1)\n", + "('met', 1)\n", + "('just', 1)\n", + "('removed', 1)\n", + "('curtains', 1)\n", + "('afar', 1)\n", + "('strangers', 1)\n", + "('forgot', 1)\n", + "('kisses', 2)\n", + "('agree', 1)\n", + "('waves', 1)\n", + "('wanderers', 1)\n", + "('loving', 1)\n", + "('limbs', 1)\n", + "('terror', 3)\n", + "('shook', 1)\n", + "('ona', 1)\n", + "('shakes', 1)\n", + "('hoary', 1)\n", + "('schoolboy', 1)\n", + "('summer', 4)\n", + "('singing', 1)\n", + "('huntsman', 1)\n", + "('winds', 1)\n", + "('sings', 1)\n", + "('company', 1)\n", + "('school', 1)\n", + "('drives', 1)\n", + "('outworn', 1)\n", + "('spend', 2)\n", + "('sighing', 1)\n", + "('dismay', 2)\n", + "('times', 1)\n", + "('drooping', 1)\n", + "('anxious', 1)\n", + "('hour', 2)\n", + "('take', 3)\n", + "(\"learning's\", 1)\n", + "('dreary', 1)\n", + "('shower', 1)\n", + "('cage', 1)\n", + "('annoy', 1)\n", + "('droop', 1)\n", + "('forget', 1)\n", + "('nipped', 1)\n", + "('plants', 1)\n", + "('springing', 1)\n", + "(\"care's\", 1)\n", + "('fruits', 2)\n", + "('appear', 2)\n", + "('gather', 1)\n", + "('griefs', 1)\n", + "('mellowing', 1)\n", + "('terzah', 1)\n", + "(\"whate'er\", 1)\n", + "('mortal', 4)\n", + "('birth', 1)\n", + "('consumed', 1)\n", + "('generation', 1)\n", + "('sexes', 2)\n", + "('sprang', 1)\n", + "('shame', 1)\n", + "('pride', 1)\n", + "('changed', 1)\n", + "('part', 2)\n", + "('didst', 3)\n", + "('mould', 1)\n", + "('false', 1)\n", + "('deceiving', 1)\n", + "('nostrils', 1)\n", + "('senseless', 1)\n", + "('betray', 1)\n", + "('jesus', 1)\n", + "('hither', 1)\n", + "('opening', 1)\n", + "('truth', 1)\n", + "('doubt', 1)\n", + "('disputes', 1)\n", + "('artful', 1)\n", + "('teazing', 1)\n", + "('folly', 1)\n", + "('endless', 1)\n", + "('maze', 1)\n", + "('tangled', 1)\n", + "('roots', 2)\n", + "('perplex', 1)\n", + "('stumble', 1)\n", + "('dead', 2)\n", + "('lead', 1)\n", + "('others', 1)\n", + "('appendix', 1)\n", + "('secresy', 1)\n", + "('fiery', 1)\n", + "('forge', 1)\n", + "('sealed', 1)\n", + "('hungry', 1)\n", + "('gorge', 1)\n", + "('note', 1)\n", + "('written', 1)\n", + "('engraved', 1)\n", + "('included', 1)\n", + "(\"blake's\", 1)\n", + "(\"thel's\", 1)\n", + "('motto', 1)\n", + "('eagle', 1)\n", + "('pit', 2)\n", + "('ask', 2)\n", + "('mole', 1)\n", + "('wisdom', 1)\n", + "('rod', 1)\n", + "('bowl', 1)\n", + "('author', 1)\n", + "('&', 17)\n", + "('printer', 1)\n", + "('willm', 1)\n", + "('1780', 1)\n", + "('daughters', 1)\n", + "('mne', 1)\n", + "('seraphim', 1)\n", + "('youngest', 1)\n", + "('paleness', 1)\n", + "('fade', 5)\n", + "('adona', 1)\n", + "('gentle', 5)\n", + "('lamentation', 1)\n", + "('falls', 1)\n", + "('lotus', 1)\n", + "('watry', 2)\n", + "('bow', 1)\n", + "('parting', 1)\n", + "('reflection', 1)\n", + "('glass', 1)\n", + "('doves', 1)\n", + "('transient', 1)\n", + "('music', 1)\n", + "('gently', 1)\n", + "('walketh', 1)\n", + "('lilly', 1)\n", + "('valley', 4)\n", + "('breathing', 2)\n", + "('answerd', 3)\n", + "('weed', 1)\n", + "('lowly', 3)\n", + "('gilded', 1)\n", + "('butterfly', 1)\n", + "('scarce', 1)\n", + "('perches', 1)\n", + "('visited', 1)\n", + "('walks', 1)\n", + "('brooks', 1)\n", + "('manna', 1)\n", + "('melts', 1)\n", + "('fountains', 1)\n", + "('springs', 3)\n", + "('flourish', 1)\n", + "('complain', 2)\n", + "('mistress', 1)\n", + "('har', 4)\n", + "('utter', 1)\n", + "('ceasd', 1)\n", + "('smild', 1)\n", + "('shrine', 1)\n", + "('peaceful', 1)\n", + "('giving', 1)\n", + "('those', 1)\n", + "('crave', 1)\n", + "('voiceless', 1)\n", + "('nourish', 1)\n", + "('smells', 1)\n", + "('milky', 2)\n", + "('garments', 1)\n", + "('crops', 1)\n", + "('sittest', 1)\n", + "('smiling', 1)\n", + "('meekin', 1)\n", + "('mouth', 1)\n", + "('contagious', 1)\n", + "('taints', 1)\n", + "('wine', 1)\n", + "('purify', 1)\n", + "('honey', 2)\n", + "('perfume', 1)\n", + "('which', 1)\n", + "('scatter', 1)\n", + "('blade', 1)\n", + "('revives', 1)\n", + "('milked', 1)\n", + "('cow', 1)\n", + "('tames', 1)\n", + "('steed', 1)\n", + "('faint', 1)\n", + "('kindled', 1)\n", + "('pearly', 1)\n", + "('throne', 2)\n", + "('answered', 2)\n", + "('glitters', 1)\n", + "('scatters', 1)\n", + "('thro', 1)\n", + "('humid', 1)\n", + "('descended', 1)\n", + "('bowd', 2)\n", + "('numerous', 1)\n", + "('charge', 2)\n", + "('verdant', 1)\n", + "('ii', 1)\n", + "('complainest', 1)\n", + "('pass', 2)\n", + "('shewd', 1)\n", + "(\"emerg'd\", 1)\n", + "('hovering', 1)\n", + "('glittering', 1)\n", + "(\"know'st\", 1)\n", + "('steeds', 1)\n", + "('luvah', 1)\n", + "('horses', 1)\n", + "('lookst', 1)\n", + "('fearest', 1)\n", + "('nothing', 2)\n", + "('remains', 1)\n", + "('tenfold', 1)\n", + "('raptures', 1)\n", + "('weigh', 1)\n", + "('balmy', 1)\n", + "('court', 1)\n", + "('fair', 1)\n", + "('eyed', 1)\n", + "('shining', 3)\n", + "('kneels', 1)\n", + "('risen', 1)\n", + "(\"link'd\", 1)\n", + "('band', 1)\n", + "('united', 1)\n", + "('bearing', 1)\n", + "('food', 4)\n", + "('smell', 1)\n", + "('sweetest', 1)\n", + "('warbling', 2)\n", + "('delights', 1)\n", + "('use', 2)\n", + "('women', 1)\n", + "(\"liv'd\", 1)\n", + "('worms', 3)\n", + "('reclind', 1)\n", + "('airy', 1)\n", + "('great', 2)\n", + "('lives', 2)\n", + "('alone', 1)\n", + "('pensive', 1)\n", + "('arose', 1)\n", + "('lillys', 2)\n", + "('leaf', 2)\n", + "('saild', 1)\n", + "('partner', 1)\n", + "('vale', 1)\n", + "('iii', 1)\n", + "(\"astonish'd\", 1)\n", + "(\"view'd\", 1)\n", + "('wrapped', 1)\n", + "(\"can'st\", 2)\n", + "('none', 3)\n", + "(\"rais'd\", 1)\n", + "('exhald', 1)\n", + "('fondness', 1)\n", + "(\"fix'd\", 1)\n", + "('ourselves', 1)\n", + "('seest', 1)\n", + "('meanest', 1)\n", + "('indeed', 1)\n", + "('pours', 1)\n", + "('oil', 2)\n", + "('binds', 1)\n", + "('nuptial', 1)\n", + "('says', 1)\n", + "('loved', 1)\n", + "('ponder', 2)\n", + "('daughter', 1)\n", + "(\"wip'd\", 1)\n", + "('veil', 1)\n", + "('alas', 1)\n", + "('therefore', 2)\n", + "('punish', 1)\n", + "('evil', 1)\n", + "('wilful', 1)\n", + "(\"bruis'd\", 1)\n", + "(\"cherish'd\", 1)\n", + "('milk', 1)\n", + "('complaind', 1)\n", + "('matron', 1)\n", + "('roof', 1)\n", + "(\"call'd\", 1)\n", + "('enter', 3)\n", + "('house', 1)\n", + "('tis', 1)\n", + "('iv', 1)\n", + "('terrific', 1)\n", + "('porter', 1)\n", + "('lifted', 1)\n", + "('northern', 1)\n", + "('bar', 1)\n", + "(\"enter'd\", 1)\n", + "('secrets', 1)\n", + "('unknown', 1)\n", + "('couches', 1)\n", + "('fibrous', 1)\n", + "('infixes', 1)\n", + "('restless', 1)\n", + "('twists', 1)\n", + "(\"thro'\", 1)\n", + "('listning', 2)\n", + "('dolors', 1)\n", + "('lamentations', 1)\n", + "('waiting', 1)\n", + "('oft', 1)\n", + "('grave', 2)\n", + "('silence', 1)\n", + "('plot', 1)\n", + "('breathed', 1)\n", + "('ear', 2)\n", + "('closed', 1)\n", + "('destruction', 1)\n", + "('glistening', 1)\n", + "('eyelids', 1)\n", + "('stord', 1)\n", + "('arrows', 1)\n", + "('drawn', 1)\n", + "('fighting', 1)\n", + "('ambush', 1)\n", + "('gifts', 1)\n", + "('graces', 1)\n", + "('showring', 1)\n", + "('coined', 1)\n", + "(\"impress'd\", 1)\n", + "('whirlpool', 1)\n", + "('fierce', 1)\n", + "('draw', 1)\n", + "('creations', 1)\n", + "('nostril', 1)\n", + "('wide', 1)\n", + "('inhaling', 1)\n", + "('affright', 1)\n", + "('curb', 1)\n", + "('curtain', 1)\n", + "('flesh', 1)\n", + "('started', 1)\n", + "('seat', 1)\n", + "('unhinderd', 1)\n" + ] + } + ], "source": [ - "# Counting words line by line.\n" + "# Counting words line by line.\n", + "\n", + "# declares the file to check\n", + "file = open(\"text-files/blakepoems.txt\", \"r\")\n", + "\n", + "def count_words_by_line(textdoc):\n", + " # Reads each line of the inputted text document\n", + " buffer = file.readlines()\n", + " \n", + " # Stores the counts for each word\n", + " word_dict = {}\n", + " \n", + " # Loops thorugh each line in the buffer\n", + " for line in buffer:\n", + " \n", + " #Ignores runtime of filtering text on blank lines\n", + " if line != '\\n':\n", + " \n", + " #Replaces all unwanted symbols with white space\n", + " replace_symbols = line.lower().replace(\"[\", \" \").replace(\"]\", \" \").replace(\".\", \" \")\\\n", + " .replace(\",\", \" \").replace(\";\", \" \").replace(\":\", \" \").replace(\"\\\"\", \" \")\\\n", + " .replace(\"!\", \" \").replace(\"-\", \" \").replace(\"\\n\", \" \").replace(\"?\", \" \")\n", + "\n", + " # strips the words of white space after splitting sentence\n", + " cut_empty = [word.strip() for word in replace_symbols.split(\" \")]\n", + " \n", + " #loops through sentence and counts words\n", + " for word in cut_empty:\n", + " if word in word_dict.keys():\n", + " word_dict[word] += 1\n", + " else:\n", + " word_dict[word] = 1\n", + " word_dict.pop('')\n", + " return word_dict\n", + "\n", + "#run the count.\n", + "#print(count_words_by_line(file))\n", + "\n", + "## Easier print for accuracy check - uncomment as necessary\n", + "for word_count in count_words_by_line(file).items():\n", + " print(word_count)\n", + " \n", + "## Closes file after use\n", + "file.close()" ] }, { @@ -1971,6 +5143,13 @@ "source": [ "---" ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [] } ], "metadata": { @@ -1989,7 +5168,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.4" + "version": "3.8.5" } }, "nbformat": 4, diff --git a/M1_Python/d4_Strings_and_files/text-files/blkpms.txt b/M1_Python/d4_Strings_and_files/text-files/blkpms.txt new file mode 100644 index 0000000..9dbe1c5 --- /dev/null +++ b/M1_Python/d4_Strings_and_files/text-files/blkpms.txt @@ -0,0 +1,1441 @@ +[Pms by Wllm Blk 1789] + +Y cn d ths + + +SNGS F NNCNC ND F XPRNC +nd TH BK f THL + + + SNGS F NNCNC + + + NTRDCTN + + Ppng dwn th vllys wld, + Ppng sngs f plsnt gl, + n cld sw chld, + nd h lghng sd t m: + + "Pp sng bt Lmb!" + S ppd wth mrry chr. + "Ppr, pp tht sng gn;" + S ppd: h wpt t hr. + + "Drp thy pp, thy hppy pp; + Sng thy sngs f hppy chr:!" + S sng th sm gn, + Whl h wpt wth jy t hr. + + "Ppr, st th dwn nd wrt + n bk, tht ll my rd." + S h vnsh'd frm my sght; + nd plck'd hllw rd, + + nd md rrl pn, + nd stn'd th wtr clr, + nd wrt my hppy sngs + vry chld my jy t hr. + + + TH SHPHRD + + Hw swt s th Shphrd's swt lt! + Frm th mrn t th vnng h stys; + H shll fllw hs shp ll th dy, + nd hs tng shll b flld wth prs. + + Fr h hrs th lmbs' nncnt cll, + nd h hrs th ws' tndr rply; + H s wtchng whl thy r n pc, + Fr thy knw whn thr Shphrd s ngh. + + + TH CHNG GRN + + Th sn ds rs, + nd mk hppy th sks; + Th mrry blls rng + T wlcm th Sprng; + Th skylrk nd thrsh, + Th brds f th bsh, + Sng ldr rnd + T th blls' chrfl snd; + Whl r sprts shll b sn + n th chng Grn. + + ld Jhn, wth wht hr, + Ds lgh wy cr, + Sttng ndr th k, + mng th ld flk. + Thy lgh t r ply, + nd sn thy ll sy, + "Sch, sch wr th jys + Whn w ll -- grls nd bys -- + n r yth-tm wr sn + n th chng Grn." + + Tll th lttl ns, wry, + N mr cn b mrry: + Th sn ds dscnd, + nd r sprts hv n nd. + Rnd th lps f thr mthrs + Mny sstrs nd brthrs, + Lk brds n thr nst, + r rdy fr rst, + nd sprt n mr sn + n th drknng grn. + + + TH LMB + + Lttl Lmb, wh mk th + Dst th knw wh md th, + Gv th lf, nd bd th fd + By th strm nd 'r th md; + Gv th clthng f dlght, + Sftst clthng, wlly, brght; + Gv th sch tndr vc, + Mkng ll th vls rjc? + Lttl Lmb, wh md th? + Dst th knw wh md th? + + Lttl Lmb, 'll tll th; + Lttl Lmb, 'll tll th: + H s clld by thy nm, + Fr H clls Hmslf Lmb + H s mk, nd H s mld, + H bcm lttl chld. + chld, nd th lmb, + W r clld by Hs nm. + Lttl Lmb, Gd blss th! + Lttl Lmb, Gd blss th! + + + TH LTTL BLCK BY + + My mthr br m n th sthrn wld, + nd m blck, bt h my sl s wht! + Wht s n ngl s th nglsh chld, + Bt m blck, s f brvd f lght. + + My mthr tght m ndrnth tr, + nd, sttng dwn bfr th ht f dy, + Sh tk m n hr lp nd kssd m, + nd, pntd t th st, bgn t sy: + + "Lk n th rsng sn: thr Gd ds lv, + nd gvs Hs lght, nd gvs Hs ht wy, + nd flwrs nd trs nd bsts nd mn rcv + Cmfrt n mrnng, jy n th nndy. + + "nd w r pt n rth lttl spc, + Tht w my lrn t br th bms f lv + nd ths blck bds nd ths snbrnt fc + s bt cld, nd lk shdy grv. + + "Fr whn r sls hv lrn'd th ht t br, + Th cld wll vnsh, w shll hr Hs vc, + Syng, 'Cm t frm th grv, my lv nd cr + nd rnd my gldn tnt lk lmbs rjc'," + + Ths dd my mthr sy, nd kssd m; + nd ths sy t lttl nglsh by. + Whn frm blck nd h frm wht cld fr, + nd rnd th tnt f Gd lk lmbs w jy + + 'll shd hm frm th ht tll h cn br + T ln n jy pn r Fthr's kn; + nd thn 'll stnd nd strk hs slvr hr, + nd b lk hm, nd h wll thn lv m. + + + TH BLSSM + + Mrry, mrry sprrw! + ndr lvs s grn + hppy blssm + Ss y, swft s rrw, + Sk yr crdl nrrw, + Nr my bsm. + Prtty, prtty rbn! + ndr lvs s grn + hppy blssm + Hrs y sbbng, sbbng, + Prtty, prtty rbn, + Nr my bsm. + + + TH CHMNY-SWPR + + Whn my mthr dd ws vry yng, + nd my fthr sld m whl yt my tng + Cld scrcly cry "Wp! wp! wp! wp!" + S yr chmnys swp, nd n st slp. + + Thr's lttl Tm Dcr, wh crd whn hs hd, + Tht crld lk lmb's bck, ws shvd; s sd, + "Hsh, Tm! nvr mnd t, fr, whn yr hd's br, + Y knw tht th st cnnt spl yr wht hr." + + nd s h ws qt, nd tht vry nght, + s Tm ws -slpng, h hd sch sght! -- + Tht thsnds f swprs, Dck, J, Nd, nd Jck, + Wr ll f thm lckd p n cffns f blck. + + nd by cm n ngl, wh hd brght ky, + nd h pnd th cffns, nd lt thm ll fr; + Thn dwn grn pln, lpng, lghng, thy rn, + nd wsh n rvr, nd shn n th sn. + + Thn nkd nd wht, ll thr bgs lft bhnd, + Thy rs pn clds, nd sprt n th wnd; + nd th ngl tld Tm, f h'd b gd by, + H'd hv Gd fr hs fthr, nd nvr wnt jy. + + nd s Tm wk, nd w rs n th drk, + nd gt wth r bgs nd r brshs t wrk. + Thgh th mrnng ws cld, Tm ws hppy nd wrm: + S, f ll d thr dty, thy nd nt fr hrm. + + + TH LTTL BY LST + + "Fthr, fthr, whr r y gng? + h d nt wlk s fst! + Spk, fthr, spk t y lttl by, + r ls shll b lst." + + Th nght ws drk, n fthr ws thr, + Th chld ws wt wth dw; + Th mr ws dp, nd th chld dd wp, + nd wy th vpr flw. + + + TH LTTL BY FND + + Th lttl by lst n th lnly fn, + Ld by th wndrng lght, + Bgn t cry, bt Gd, vr ngh, + pprd lk hs fthr, n wht. + + H kssd th chld, nd by th hnd ld, + nd t hs mthr brght, + Wh n srrw pl, thrgh th lnly dl, + Th lttl by wpng sght. + + + LGHNG SNG + + Whn th grn wds lgh wth th vc f jy, + nd th dmplng strm rns lghng by; + Whn th r ds lgh wth r mrry wt, + nd th grn hll lghs wth th ns f t; + + whn th mdws lgh wth lvly grn, + nd th grsshppr lghs n th mrry scn, + Whn Mry nd Ssn nd mly + Wth thr swt rnd mths sng "H, h h!" + + Whn th pntd brds lgh n th shd, + Whr r tbl wth chrrs nd nts s sprd: + Cm lv, nd b mrry, nd jn wth m, + T sng th swt chrs f "H, h, h!" + + + SNG + + Swt drms, frm shd + 'r my lvly nfnt's hd! + Swt drms f plsnt strms + By hppy, slnt, mny bms! + + Swt Slp, wth sft dwn + Wv thy brws n nfnt crwn + Swt Slp, ngl mld, + Hvr 'r my hppy chld! + + Swt smls, n th nght + Hvr vr my dlght! + Swt smls, mthr's sml, + ll th lvlng nght bgl. + + Swt mns, dvlk sghs, + Chs nt slmbr frm thn ys! + Swt mn, swtr sml, + ll th dvlk mns bgl. + + Slp, slp, hppy chld! + ll crtn slpt nd smld. + Slp, slp, hppy slp, + Whl 'r th dth mthr wp. + + Swt bb, n thy fc + Hly mg cn trc; + Swt bb, nc lk th + Thy Mkr ly, nd wpt fr m: + + Wpt fr m, fr th, fr ll, + Whn H ws n nfnt smll. + Th Hs mg vr s, + Hvnly fc tht smls n th! + + Smls n th, n m, n ll, + Wh bcm n nfnt smll; + nfnt smls r hs wn smls; + Hvn nd rth t pc bgls. + + + DVN MG + + T Mrcy, Pty, Pc, nd Lv, + ll pry n thr dstrss, + nd t ths vrts f dlght + Rtrn thr thnkflnss. + + Fr Mrcy, Pty, Pc, nd Lv, + s Gd r Fthr dr; + nd Mrcy, Pty, Pc, nd Lv, + s mn, hs chld nd cr. + + Fr Mrcy hs hmn hrt + Pty, hmn fc; + nd Lv, th hmn frm dvn; + nd Pc, th hmn drss. + + Thn vry mn, f vry clm, + Tht prys n hs dstrss, + Prys t th hmn frm dvn: + Lv, Mrcy, Pty, Pc. + + nd ll mst lv th hmn frm, + n hthn, Trk, r Jw. + Whr Mrcy, Lv, nd Pty dwll, + Thr Gd s dwllng t. + + + HLY THRSDY + + 'Tws n Hly Thrsdy, thr nncnt fcs cln, + Cm chldrn wlkng tw nd tw, n rd, nd bl, nd grn: + Gry-hdd bdls wlkd bfr, wth wnds s wht s snw, + Tll nt th hgh dm f Pl's thy lk Thms wtrs flw. + + h wht mlttd thy smd, ths flwrs f Lndn twn! + Std n cmpns thy st, wth rdnc ll thr wn. + Th hm f mlttds ws thr, bt mlttds f lmbs, + Thsnds f lttl bys nd grls rsng thr nncnt hnds. + + Nw lk mghty wld thy rs t hvn th vc f sng, + r lk hrmns thndrngs th sts f hvn mng: + Bnth thm st th gd mn, ws grdns f th pr. + Thn chrsh pty, lst y drv n ngl frm yr dr. + + + NGHT + + Th sn dscndng n th wst, + Th vnng str ds shn; + Th brds r slnt n thr nst, + nd mst sk fr mn. + Th mn, lk flwr + n hvn's hgh bwr, + Wth slnt dlght, + Sts nd smls n th nght. + + Frwll, grn flds nd hppy grv, + Whr flcks hv t'n dlght. + Whr lmbs hv nbbld, slnt mv + Th ft f ngls brght; + nsn thy pr blssng, + nd jy wtht csng, + n ch bd nd blssm, + nd ch slpng bsm. + + Thy lk n vry thghtlss nst + Whr brds r cvrd wrm; + Thy vst cvs f vry bst, + T kp thm ll frm hrm: + f thy s ny wpng + Tht shld hv bn slpng, + Thy pr slp n thr hd, + nd st dwn by thr bd. + + Whn wlvs nd tgrs hwl fr pry, + Thy ptyng stnd nd wp; + Skng t drv thr thrst wy, + nd kp thm frm th shp. + Bt, f thy rsh drdfl, + Th ngls, mst hdfl, + Rcv ch mld sprt, + Nw wrlds t nhrt. + + + nd thr th ln's rddy ys + Shll flw wth trs f gld: + nd ptyng th tndr crs, + nd wlkng rnd th fld: + Syng: "Wrth by Hs mknss, + nd, by Hs hlth, scknss, + r drvn wy + Frm r mmrtl dy. + + "nd nw bsd th, bltng lmb, + cn l dwn nd slp, + r thnk n Hm wh br thy nm, + Grz ftr th, nd wp. + Fr, wshd n lf's rvr, + My brght mn fr vr + Shll shn lk th gld, + s grd 'r th fld." + + + SPRNG + + Snd th flt! + Nw t's mt! + Brd's dlght, + Dy nd nght, + Nghtngl, + n th dl, + Lrk n sky,-- + Mrrly, + Mrrly mrrly, t wlcm n th yr. + + Lttl by, + Fll f jy; + Lttl grl, + Swt nd smll; + Cck ds crw, + S d y; + Mrry vc, + nfnt ns; + Mrrly, mrrly, t wlcm n th yr. + + Lttl lmb, + Hr m; + Cm nd lck + My wht nck; + Lt m pll + Yr sft wl; + Lt m kss + Yr sft fc; + Mrrly, mrrly, t wlcm n th yr. + + + NRS'S SNG + + Whn th vcs f chldrn r hrd n th grn, + nd lghng s hrd n th hll, + My hrt s t rst wthn my brst, + nd vrythng ls s stll. + "Thn cm hm, my chldrn, th sn s gn dwn, + nd th dws f nght rs; + Cm, cm, lv ff ply, nd lt s wy, + Tll th mrnng pprs n th sks." + + "N, n, lt s ply, fr t s yt dy, + nd w cnnt g t slp; + Bsds, n th sky th lttl brds fly, + nd th hlls r ll cvrd wth shp." + "Wll, wll, g nd ply tll th lght fds wy, + nd thn g hm t bd." + Th lttl ns lpd, nd shtd, nd lghd, + nd ll th hlls chd. + + + NFNT JY + + " hv n nm; + m bt tw dys ld." + Wht shll cll th? + " hppy m, + Jy s my nm." + Swt jy bfll th! + + Prtty jy! + Swt jy, bt tw dys ld. + Swt Jy cll th: + Th dst sml, + sng th whl; + Swt jy bfll th! + + + DRM + + nc drm dd wv shd + 'r my ngl-grdd bd, + Tht n mmt lst ts wy + Whr n grss mthght ly. + + Trbld, wldrd, nd frlrn, + Drk, bnghtd, trvl-wrn, + vr mny tngl spry, + ll hrt-brk, hrd hr sy: + + "h my chldrn! d thy cry, + D thy hr thr fthr sgh? + Nw thy lk brd t s, + Nw rtrn nd wp fr m." + + Ptyng, drppd tr: + Bt sw glw-wrm nr, + Wh rpld, "Wht wlng wght + Clls th wtchmn f th nght? + + " m st t lght th grnd, + Whl th btl gs hs rnd: + Fllw nw th btl's hm; + Lttl wndrr, h th hm!" + + + N NTHR'S SRRW + + Cn s nthr's w, + nd nt b n srrw t? + Cn s nthr's grf, + nd nt sk fr knd rlf? + + Cn s fllng tr, + nd nt fl my srrw's shr? + Cn fthr s hs chld + Wp, nr b wth srrw flld? + + Cn mthr st nd hr + n nfnt grn, n nfnt fr? + N, n! nvr cn t b! + Nvr, nvr cn t b! + + nd cn H wh smls n ll + Hr th wrn wth srrws smll, + Hr th smll brd's grf nd cr, + Hr th ws tht nfnts br -- + + nd nt st bsd th nxt, + Prng pty n thr brst, + nd nt st th crdl nr, + Wpng tr n nfnt's tr? + + nd nt st bth nght nd dy, + Wpng ll r trs wy? + h n! nvr cn t b! + Nvr, nvr cn t b! + + H dth gv hs jy t ll: + H bcms n nfnt smll, + H bcms mn f w, + H dth fl th srrw t. + + Thnk nt th cnst sgh sgh, + nd thy Mkr s nt by: + Thnk nt th cnst wp tr, + nd thy Mkr s nt yr. + + h H gvs t s hs jy, + Tht r grf H my dstry: + Tll r grf s fld n gn + H dth st by s nd mn. + + + SNGS F XPRNC + + + NTRDCTN + + Hr th vc f th Brd, + Wh prsnt, pst, nd ftr, ss; + Whs rs hv hrd + Th Hly Wrd + Tht wlkd mng th ncnt tr; + + Cllng th lpsd sl, + nd wpng n th vnng dw; + Tht mght cntrl + Th strry pl, + nd flln, flln lght rnw! + + " rth, rth, rtrn! + rs frm t th dwy grss! + Nght s wrn, + nd th mrn + Rss frm th slmbrs mss. + + "Trn wy n mr; + Why wlt th trn wy? + Th strry flr, + Th wtry shr, + r gvn th tll th brk f dy." + + + RTH'S NSWR + + rth rsd p hr hd + Frm th drknss drd nd drr, + Hr lght fld, + Stny, drd, + nd hr lcks cvrd wth gry dspr. + + "Prsnd n wtry shr, + Strry jlsy ds kp my dn + Cld nd hr; + Wpng 'r, + hr th fthr f th ncnt mn. + + "Slfsh fthr f mn! + Crl, jls, slfsh fr! + Cn dlght, + Chnd n nght, + Th vrgns f yth nd mrnng br? + + + "Ds sprng hd ts jy, + Whn bds nd blssms grw? + Ds th swr + Sw by nght, + r th plwmn n drknss plgh? + + "Brk ths hvy chn, + Tht ds frz my bns rnd! + Slfsh, vn, + trnl bn, + Tht fr lv wth bndg bnd." + + + TH CLD ND TH PBBL + + "Lv skth nt tslf t pls, + Nr fr tslf hth ny cr, + Bt fr nthr gvs t s, + nd blds hvn n hll's dspr." + + S sng lttl cld f cly, + Trddn wth th cttl's ft, + Bt pbbl f th brk + Wrbld t ths mtrs mt: + + "Lv skth nly Slf t pls, + T bnd nthr t ts dlght, + Jys n nthr's lss f s, + nd blds hll n hvn's dspt." + + + HLY THRSDY + + s ths hly thng t s + n rch nd frtfl lnd, -- + Bbs rdcd t msry, + Fd wth cld nd srs hnd? + + s tht trmblng cry sng? + Cn t b sng f jy? + nd s mny chldrn pr? + t s lnd f pvrty! + + nd thr sn ds nvr shn, + nd thr flds r blk nd br, + nd thr wys r flld wth thrns: + t s trnl wntr thr. + + Fr whr'r th sn ds shn, + nd whr'r th rn ds fll, + Bbs shld nvr hngr thr, + Nr pvrty th mnd ppll. + + + TH LTTL GRL LST + + n ftrty + prphtc s + Tht th rth frm slp + (Grv th sntnc dp) + + Shll rs, nd sk + fr hr Mkr mk; + nd th dsrt wld + Bcm grdn mld. + + n th sthrn clm, + Whr th smmr's prm + Nvr fds wy, + Lvly Lyc ly. + + Svn smmrs ld + Lvly Lyc tld. + Sh hd wndrd lng, + Hrng wld brds' sng. + + "Swt slp, cm t m + ndrnth ths tr; + D fthr, mthr, wp? + Whr cn Lyc slp? + + "Lst n dsrt wld + s yr lttl chld. + Hw cn Lyc slp + f hr mthr wp? + + "f hr hrt ds ch, + Thn lt Lyc wk; + f my mthr slp, + Lyc shll nt wp. + + "Frwnng, frwnng nght, + 'r ths dsrt brght + Lt thy mn rs, + Whl cls my ys." + + Slpng Lyc ly + Whl th bsts f pry, + Cm frm cvrns dp, + Vwd th md slp. + + Th kngly ln std, + nd th vrgn vwd: + Thn h gmblld rnd + 'r th hllwd grnd. + + Lprds, tgrs, ply + Rnd hr s sh ly; + Whl th ln ld + Bwd hs mn f gld, + + nd hr brst dd lck + nd pn hr nck, + Frm hs ys f flm, + Rby trs thr cm; + + Whl th lnss + Lsd hr slndr drss, + nd nkd thy cnvyd + T cvs th slpng md. + + + TH LTTL GRL FND + + ll th nght n w + Lyc's prnts g + vr vllys dp, + Whl th dsrts wp. + + Trd nd w-bgn, + Hrs wth mkng mn, + rm n rm, svn dys + Thy trcd th dsrt wys. + + Svn nghts thy slp + mng shdws dp, + nd drm thy s thr chld + Strvd n dsrt wld. + + Pl thrgh pthlss wys + Th fncd mg strys, + Fmshd, wpng, wk, + Wth hllw pts shrk. + + Rsng frm nrst, + Th trmblng wmn prss + Wth ft f wry w; + Sh cld n frthr g. + + n hs rms h br + Hr, rmd wth srrw sr; + Tll bfr thr wy + cchng ln ly. + + Trnng bck ws vn: + Sn hs hvy mn + Br thm t th grnd, + Thn h stlkd rnd, + + Smllng t hs pry; + Bt thr frs lly + Whn h lcks thr hnds, + nd slnt by thm stnds. + + Thy lk pn hs ys, + Flld wth dp srprs; + nd wndrng bhld + sprt rmd n gld. + + n hs hd crwn, + n hs shldrs dwn + Flwd hs gldn hr. + Gn ws ll thr cr. + + "Fllw m," h sd; + "Wp nt fr th md; + n my plc dp, + Lyc ls slp." + + Thn thy fllwd + Whr th vsn ld, + nd sw thr slpng chld + mng tgrs wld. + + T ths dy thy dwll + n lnly dll, + Nr fr th wlvsh hwl + Nr th ln's grwl. + + + TH CHMNY SWPR + + lttl blck thng n th snw, + Cryng "wp! wp!" n nts f w! + "Whr r thy fthr nd mthr? Sy!"-- + "Thy r bth gn p t th chrch t pry. + + "Bcs ws hppy pn th hth, + nd smld mng th wntr's snw, + Thy clthd m n th clths f dth, + nd tght m t sng th nts f w. + + "nd bcs m hppy nd dnc nd sng, + Thy thnk thy hv dn m n njry, + nd r gn t prs Gd nd hs prst nd kng, + Wh mk p hvn f r msry." + + + NRS'S SNG + + Whn vcs f chldrn r hrd n th grn, + nd whsprngs r n th dl, + Th dys f my yth rs frsh n my mnd, + My fc trns grn nd pl. + + Thn cm hm, my chldrn, th sn s gn dwn, + nd th dws f nght rs; + Yr sprng nd yr dy r wstd n ply, + nd yr wntr nd nght n dsgs. + + + TH SCK RS + + rs, th rt sck! + Th nvsbl wrm, + Tht fls n th nght, + n th hwlng strm, + + Hs fnd t thy bd + f crmsn jy, + nd hs drk scrt lv + Ds thy lf dstry. + + + TH FLY + + Lttl Fly, + Thy smmr's ply + My thghtlss hnd + Hs brshd wy. + + m nt + fly lk th? + r rt nt th + mn lk m? + + Fr dnc + nd drnk, nd sng, + Tll sm blnd hnd + Shll brsh my wng. + + f thght s lf + nd strngth nd brth + nd th wnt + f thght s dth; + + Thn m + hppy fly, + f lv, + r f d. + + + TH NGL + + drmt drm! Wht cn t mn? + nd tht ws mdn Qn + Grdd by n ngl mld: + Wtlss w ws n'r bgld! + + nd wpt bth nght nd dy, + nd h wpd my trs wy; + nd wpt bth dy nd nght, + nd hd frm hm my hrt's dlght. + + S h tk hs wngs, nd fld; + Thn th mrn blshd rsy rd. + drd my trs, nd rmd my frs + Wth tn-thsnd shlds nd sprs. + + Sn my ngl cm gn; + ws rmd, h cm n vn; + Fr th tm f yth ws fld, + nd gry hrs wr n my hd. + + + TH TGR + + Tgr, tgr, brnng brght + n th frst f th nght, + Wht mmrtl hnd r y + Cld Frm thy frfl symmtry? + + n wht dstnt dps r sks + Brnt th fr f thn ys? + n wht wngs dr h spr? + Wht th hnd dr sz th fr? + + nd wht shldr nd wht rt + Cld twst th snws f thy hrt? + nd, whn thy hrt bgn t bt, + Wht drd hnd nd wht drd ft? + + Wht th hmmr? wht th chn? + n wht frnc ws thy brn? + Wht th nvl? wht drd grsp + Dr ts ddly trrrs clsp? + + Whn th strs thrw dwn thr sprs, + nd wtrd hvn wth thr trs, + Dd h sml hs wrk t s? + Dd h wh md th lmb mk th? + + Tgr, tgr, brnng brght + n th frsts f th nght, + Wht mmrtl hnd r y + Dr frm thy frfl symmtry? + + + MY PRTTY RS TR + + flwr ws ffrd t m, + Sch flwr s My nvr br; + Bt sd "'v prtty rs tr," + nd pssd th swt flwr 'r. + + Thn wnt t my prtty rs tr, + T tnd hr by dy nd by nght; + Bt my rs trnd wy wth jlsy, + nd hr thrns wr my nly dlght. + + + H SNFLWR + + h Snflwr, wry f tm, + Wh cntst th stps f th sn; + Skng ftr tht swt gldn clm + Whr th trvllr's jrny s dn; + + Whr th Yth pnd wy wth dsr, + nd th pl vrgn shrdd n snw, + rs frm thr grvs, nd spr + Whr my Snflwr wshs t g! + + + TH LLY + + Th mdst Rs pts frth thrn, + Th hmbl shp thrt'nng hrn: + Whl th Lly wht shll n lv dlght, + Nr thrn nr thrt stn hr bty brght. + + + TH GRDN F LV + + ld m dwn pn bnk, + Whr Lv ly slpng; + hrd mng th rshs dnk + Wpng, wpng. + + Thn wnt t th hth nd th wld, + T th thstls nd thrns f th wst; + nd thy tld m hw thy wr bgld, + Drvn t, nd cmplld t th chst. + + wnt t th Grdn f Lv, + nd sw wht nvr hd sn; + Chpl ws blt n th mdst, + Whr sd t ply n th grn. + + nd th gts f ths Chpl wr sht + nd "Th shlt nt," wrt vr th dr; + S trnd t th Grdn f Lv + Tht s mny swt flwrs br. + + nd sw t ws flld wth grvs, + nd tmbstns whr flwrs shld b; + nd prsts n blck gwns wr wlkng thr rnds, + nd bndng wth brrs my jys nd dsrs. + + + TH LTTL VGBND + + Dr mthr, dr mthr, th Chrch s cld; + Bt th lhs s hlthy, nd plsnt, nd wrm. + Bsds, cn tll whr m sd wll; + Th pr prsns wth wnd lk blwn blddr swll. + + Bt, f t th Chrch thy wld gv s sm l, + nd plsnt fr r sls t rgl, + W'd sng nd w'd pry ll th lvlng dy, + Nr vr nc wsh frm th Chrch t stry. + + Thn th Prsn mght prch, nd drnk, nd sng, + nd w'd b s hppy s brds n th sprng; + nd mdst Dm Lrch, wh s lwys t chrch, + Wld nt hv bndy chldrn, nr fstng, nr brch. + + nd Gd, lk fthr, rjcng t s + Hs chldrn s plsnt nd hppy s h, + Wld hv n mr qrrl wth th Dvl r th brrl, + Bt kss hm, nd gv hm bth drnk nd pprl. + + + LNDN + + wndrd thrgh ch chrtrd strt, + Nr whr th chrtrd Thms ds flw, + mrk n vry fc mt, + Mrks f wknss, mrks f w. + + n vry cry f vry mn, + n vry nfnt's cry f fr, + n vry vc, n vry bn, + Th mnd-frgd mncls hr: + + Hw th chmny-swpr's cry + vry blcknng chrch ppls, + nd th hplss sldr's sgh + Rns n bld dwn plc-wlls. + + Bt mst, thrgh mdnght strts hr + Hw th ythfl hrlt's crs + Blsts th nw-brn nfnt's tr, + nd blghts wth plgs th mrrg-hrs. + + + TH HMN BSTRCT + + Pty wld b n mr + f w dd nt mk smbdy pr, + nd Mrcy n mr cld b + f ll wr s hppy s w. + + nd mtl fr brngs Pc, + Tll th slfsh lvs ncrs + Thn Crlty knts snr, + nd sprds hs bts wth cr. + + H sts dwn wth hs hly frs, + nd wtrs th grnd wth trs; + Thn Hmlty tks ts rt + ndrnth hs ft. + + Sn sprds th dsml shd + f Mystry vr hs hd, + nd th ctrpllr nd fly + Fd n th Mystry. + + nd t brs th frt f Dct, + Rddy nd swt t t, + nd th rvn hs nst hs md + n ts thckst shd. + + Th gds f th rth nd s + Sght thrgh ntr t fnd ths tr, + Bt thr srch ws ll n vn: + Thr grws n n th hmn Brn. + + + NFNT SRRW + + My mthr grnd, my fthr wpt: + nt th dngrs wrld lpt, + Hlplss, nkd, ppng ld, + Lk fnd hd n cld. + + Strgglng n my fthr's hnds, + Strvng gnst my swddlng-bnds, + Bnd nd wry, thght bst + T slk pn my mthr's brst. + + + PSN TR + + ws ngry wth my frnd: + tld my wrth, my wrth dd nd. + ws ngry wth my f: + tld t nt, my wrth dd grw. + + nd wtrd t n frs + Nght nd mrnng wth my trs, + nd snnd t wth smls + nd wth sft dctfl wls. + + nd t grw bth dy nd nght, + Tll t br n ppl brght, + nd my f bhld t shn, + nd h knw tht t ws mn, -- + + nd nt my grdn stl + Whn th nght hd vld th pl; + n th mrnng, gld, s + My f tstrtchd bnth th tr. + + + LTTL BY LST + + "Nght lvs nthr s tslf, + Nr vnrts nthr s, + Nr s t pssbl t thght + grtr thn tslf t knw. + + "nd, fthr, hw cn lv y + r ny f my brthrs mr? + lv y lk th lttl brd + Tht pcks p crmbs rnd th dr." + + Th Prst st by nd hrd th chld; + n trmblng zl h szd hs hr, + H ld hm by hs lttl ct, + nd ll dmrd th prstly cr. + + nd stndng n th ltr hgh, + "L, wht fnd s hr! sd h: + "n wh sts rsn p fr jdg + f r mst hly mystry." + + Th wpng chld cld nt b hrd, + Th wpng prnts wpt n vn: + Thy strppd hm t hs lttl shrt, + nd bnd hm n n rn chn, + + nd brnd hm n hly plc + Whr mny hd bn brnd bfr; + Th wpng prnts wpt n vn. + r sch thng dn n lbn's shr? + + + LTTL GRL LST + + Chldrn f th ftr g, + Rdng ths ndgnnt pg, + Knw tht n frmr tm + Lv, swt lv, ws thght crm. + + n th g f gld, + Fr frm wntr's cld, + Yth nd mdn brght, + T th hly lght, + Nkd n th snny bms dlght. + + nc ythfl pr, + Flld wth sftst cr, + Mt n grdn brght + Whr th hly lght + Hd jst rmvd th crtns f th nght. + + Thn, n rsng dy, + n th grss thy ply; + Prnts wr fr, + Strngrs cm nt nr, + nd th mdn sn frgt hr fr. + + Trd wth ksss swt, + Thy gr t mt + Whn th slnt slp + Wvs 'r hvn's dp, + nd th wry trd wndrrs wp. + + T hr fthr wht + Cm th mdn brght; + Bt hs lvng lk, + Lk th hly bk + ll hr tndr lmbs wth trrr shk. + + "n, pl nd wk, + T thy fthr spk! + h th trmblng fr! + h th dsml cr + Tht shks th blssms f my hry hr!" + + + TH SCHLBY + + lv t rs n smmr mrn, + Whn brds r sngng n vry tr; + Th dstnt hntsmn wnds hs hrn, + nd th skylrk sngs wth m: + h wht swt cmpny! + + Bt t g t schl n smmr mrn, -- + h t drvs ll jy wy! + ndr crl y twrn, + Th lttl ns spnd th dy + n sghng nd dsmy. + + h thn t tms drpng st, + nd spnd mny n nxs hr; + Nr n my bk cn tk dlght, + Nr st n lrnng's bwr, + Wrn thrgh wth th drry shwr. + + Hw cn th brd tht s brn fr jy + St n cg nd sng? + Hw cn chld, whn frs nny, + Bt drp hs tndr wng, + nd frgt hs ythfl sprng? + + h fthr nd mthr, f bds r nppd, + nd blssms blwn wy; + nd f th tndr plnts r strppd + f thr jy n th sprngng dy, + By srrw nd cr's dsmy, -- + + Hw shll th smmr rs n jy, + r th smmr frts ppr? + r hw shll w gthr wht grfs dstry, + r blss th mllwng yr, + Whn th blsts f wntr ppr? + + + T TRZH + + Wht'r s brn f mrtl brth + Mst b cnsmd wth th rth, + T rs frm gnrtn fr: + Thn wht hv t d wth th? + Th sxs sprng frm shm nd prd, + Blwn n th mrn, n vnng dd; + Bt mrcy chngd dth nt slp; + Th sxs rs t wrk nd wp. + + Th, mthr f my mrtl prt, + Wth crlty ddst mld my hrt, + nd wth fls slf-dcvng trs + Ddst bnd my nstrls, ys, nd rs, + + Ddst cls my tng n snslss cly, + nd m t mrtl lf btry. + Th dth f Jss st m fr: + Thn wht hv t d wth th? + + + TH VC F TH NCNT BRD + + Yth f dlght! cm hthr + nd s th pnng mrn, + mg f Trth nw-brn. + Dbt s fld, nd clds f rsn, + Drk dspts nd rtfl tzng. + Flly s n ndlss mz; + Tngld rts prplx hr wys; + Hw mny hv flln thr! + Thy stmbl ll nght vr bns f th dd; + nd fl -- thy knw nt wht bt cr; + nd wsh t ld thrs, whn thy shld b ld. + + +PPNDX + + DVN MG + + Crlty hs hmn hrt, + nd Jlsy hmn fc; + Trrr th hmn frm dvn, + nd Scrsy th hmn drss. + + Th hmn drss s frgd rn, + Th hmn frm fry frg, + Th hmn fc frnc sld, + Th hmn hrt ts hngry grg. + + NT: Thgh wrttn nd ngrvd by Blk, " DVN MG" ws nvr +ncldd n th SNGS F NNCNC ND F XPRNC. + + + + + + +Wllm Blk's + +TH BK f THL + + +THL'S Mtt + +Ds th gl knw wht s n th pt? +r wlt th g sk th Ml: +Cn Wsdm b pt n slvr rd? +r Lv n gldn bwl? + + +TH BK f THL + +Th thr & Prntr Wllm. Blk. 1780 + + +THL + + + +Th dghtrs f Mn Srphm ld rnd thr snny flcks, +ll bt th yngst: sh n plnss sght th scrt r. +T fd wy lk mrnng bty frm hr mrtl dy: +Dwn by th rvr f dn hr sft vc s hrd; +nd ths hr gntl lmnttn flls lk mrnng dw. + + lf f ths r sprng! why fds th lts f th wtr? +Why fd ths chldrn f th sprng? brn bt t sml & fll. +h! Thl s lk wtry bw, nd lk prtng cld, +Lk rflctn n glss: lk shdws n th wtr +Lk drms f nfnts, lk sml pn n nfnts fc. +Lk th dvs vc, lk trnsnt dy, lk msc n th r: +h! gntl my ly m dwn nd gntl rst my hd. +nd gntl slp th slp f dth, nd gntly hr th vc +f hm tht wlkth n th grdn n th vnng tm. + +Th Llly f th vlly brthng n th hmbl grss +nswrd th lvly md nd sd: m wtry wd, +nd m vry smll nd lv t dwll n lwly vls: +S wk th gldd bttrfly scrc prchs n my hd +Yt m vstd frm hvn nd h tht smls n ll +Wlks n th vlly, nd ch mrn vr m sprds hs hnd +Syng, rjc th hmbl grss, th nw-brn lly flwr. +Th gntl md f slnt vllys nd f mdst brks: +Fr th shll b clthd n lght, nd fd wth mrnng mnn: +Tll smmrs ht mlts th bsd th fntns nd th sprngs +T flrsh n trnl vls: thy why shld Thl cmpln. +Why shld th mstrss f th vls f Hr, ttr sgh. + +Sh csd & smld n trs, thn st dwn n hr slvr shrn. + +Thl nswrd, th lttl vrgn f th pcfl vlly. +Gvng t ths tht cnnt crv, th vclss, th 'r trd +Th brth dth nrsh th nncnt lmb, h smlls th mlky grmnts +H crps thy flwrs whl th sttst smlng n hs fc, +Wpng hs mld nd mkn mth frm ll cntgs tnts. +Thy wn dth prfy th gldn hny; thy prfm. +Whch th dst scttr n vry lttl bld f grss tht sprngs +Rvvs th mlkd cw, & tms th fr-brthng std. +Bt Thl s lk fnt cld kndld t th rsng sn: + vnsh frm my prly thrn, nd wh shll fnd my plc. + +Qn f th vls th Lly nswrd, sk th tndr cld, +nd t shll tll th why t glttrs n th mrnng sky. +nd why t scttrs ts brght bty thr th hmd r. +Dscnd lttl cld & hvr bfr th ys f Thl. + +Th Cld dscndd nd th Lly bwd hr mdst hd: +nd wnt t mnd hr nmrs chrg mng th vrdnt grss. + + +. + + lttl Cld th vrgn sd, chrg th t tll m +Why th cmplnst nw whn n n hr th fd wy: +Thn w shll sk th bt nt fnd: h Thl s lk t th. + pss wy, yt cmpln, nd n n hrs my vc. + +Th Cld thn shwd hs gldn hd & hs brght frm mrg'd. +Hvrng nd glttrng n th r bfr th fc f Thl. + + vrgn knw'st th nt r stds drnk f th gldn sprngs +Whr Lvh dth rnw hs hrss: lkst th n my yth. +nd frst th bcs vnsh nd m sn n mr. +Nthng rmns; md tll th, whn pss wy. +t s t tnfld lf, t lv, t pc, nd rptrs hly: +nsn dscndng, wgh my lght wngs pn blmy flwrs: +nd crt th fr yd dw, t tk m t hr shnng tnt +Th wpng vrgn, trmblng knls bfr th rsn sn. +Tll w rs lnk'd n gldn bnd nd nvr prt: +Bt wlk ntd brng fd t ll r tndr flwrs. + +Dst th lttl cld? fr tht m nt lk th: +Fr wlk thrgh th vls f Hr, nd smll th swtst flwrs: +Bt fd nt th lttl flwrs: hr th wrblng brds, +Bt fd nt th wrblng brds, thy fly nd sk thr fd: +Bt Thl dlghts n ths n mr bcs fd wy +nd ll shll sy, wtht s ths shnng wmn lv'd, +r dd sh nly lv t b t dth th fd f wrms. + +Th Cld rclnd pn hs ry thrn nd nswrd ths. + +Thn f th rt th fd f wrms, vrgn f th sks, +Hw grt thy s, hw grt thy blssng, vry thng tht lvs. +Lvs nt ln nr r tslf: fr nt nd wll cll, +Th wk wrm frm ts lwly bd, nd th shlt hr ts vc. +Cm frth wrm nd th slnt vlly, t thy pnsv qn. + +Th hlplss wrm rs nd st pn th Lllys lf, +nd th brght Cld sld n, t fnd hs prtnr n th vl. + + +. + +Thn Thl stnsh'd vw'd th Wrm pn ts dwy bd. + +rt th Wrm? mg f wknss. rt th bt Wrm? + s th lk n nfnt wrppd n th Lllys lf; +h wp nt lttl vc, th cn'st nt spk, bt th cn'st wp: +s ths Wrm? s thy ly hlplss & nkd: wpng +nd nn t nswr, nn t chrsh th wth mthrs smls. + +Th Cld f Cly hrd th Wrms vc & rs'd hr ptyng hd: +Sh bwd vr th wpng nfnt, nd hr lf xhld +n mlky fndnss, thn n Thl sh fx'd hr hmbl ys + + bty f th vls f Hr, w lv nt fr rslvs, +Th sst m th mnst thng, nd s m ndd: +My bsm f tslf s cld, nd f tslf s drk, + +Bt h tht lvs th lwly, prs hs l pn my hd +nd ksss m, nd bnds hs nptl bnds rnd my brst. +nd sys; Th mthr f my chldrn, hv lvd th +nd hv gvn th crwn tht nn cn tk wy. +Bt hw ths s swt md, knw nt, nd cnnt knw + pndr, nd cnnt pndr; yt lv nd lv. + +Th dghtr f bty wp'd hr ptyng trs wth hr wht vl, +nd sd, ls! knw nt ths, nd thrfr dd wp: +Tht Gd wld lv Wrm knw, nd pnsh th vl ft +Tht wlfl brs'd ts hlplss frm: bt tht h chrsh'd t +Wth mlk nd l nvr knw, nd thrfr dd wp, +nd cmplnd n th mld r, bcs fd wy. +nd ly m dwn n thy cld bd, nd lv my shnng lt. + +Qn f th vls, th mtrn Cly nswrd: hrd thy sghs. +nd ll thy mns flw 'r my rf, bt hv cll'd thm dwn: +Wlt th Qn ntr my hs, ts gvn th t ntr, +nd t rtrn: fr nthng, ntr wth thy vrgn ft. + + +V. + +Th trnl gts trrfc prtr lftd th nrthrn br: +Thl ntr'd n & sw th scrts f th lnd nknwn; +Sh sw th cchs f th dd, & whr th fbrs rts +f vry hrt n rth nfxs dp ts rstlss twsts: + lnd f srrws & f trs whr nvr sml ws sn. + +Sh wndrd n th lnd f clds thr' vllys drk, lstnng +Dlrs & lmnttns: wtng ft bsd th dwy grv +Sh std n slnc, lstnng t th vcs f th grnd, +Tll t hr wn grv plt sh cm, & thr sh st dwn. +nd hrd ths vc f srrw brthd frm th hllw pt. + +Why cnnt th r b clsd t ts wn dstrctn? +r th glstnng y t th psn f sml! +Why r ylds strd wth rrws rdy drwn, +Whr thsnd fghtng mn n mbsh l! +r n y f gfts & grcs shwrng frts & cnd gld! + +Why Tng mprss'd wth hny frm vry wnd? +Why n r, whrlpl frc t drw crtns n? +Why Nstrl wd nhlng trrr trmblng & ffrght +Why tndr crb pn th ythfl brnng by? +Why lttl crtn f flsh n th bd f r dsr? + +Th Vrgn strtd frm hr st, & wth shrk, +Fld bck nhndrd tll sh cm nt th vls f Hr