November 2015
Intermediate to advanced
304 pages
5h 23m
English
Chapter 16

1 #!/usr/bin/env python 2 import sys, re, operator, string, inspect 3 4 def read_stop_words(): 5 """ This function can only be called from a function 6 named extract_words.""" 7 # Meta-level data: inspect.stack() 8 if inspect.stack()[1][3] != 'extract_words': 9 return None 10 11 with open('../stop_words.txt') as f: 12 stop_words = f.read().split(',') 13 stop_words.extend(list(string.ascii_lowercase)) ...