diff --git a/get_words.py b/get_words.py new file mode 100644 index 0000000..13b076f --- /dev/null +++ b/get_words.py @@ -0,0 +1,19 @@ +""" +get_words.py + +Utility method to load the SBG words +and retun them as a list of strings. +""" + +def get_words(): + # Load the file. + with open('sgb-words.txt','r') as f: + ## This includes \n at the end of each line: + #words = f.readlines() + + # This drops the \n at the end of each line: + words = f.read().splitlines() + + return words + +