X-Git-Url: https://projects.mako.cc/source/wordplay-cdsw-solutions/blobdiff_plain/d57af8e41dd0a0a46fc411ad2488d029244921e1..HEAD:/solution_5_easy.py diff --git a/solution_5_easy.py b/solution_5_easy.py index eec37fa..9dda191 100644 --- a/solution_5_easy.py +++ b/solution_5_easy.py @@ -9,7 +9,7 @@ should_i_print = True for word in scrabble.wordlist: if word[0] == 'a' and len(word) >= 9: if should_i_print: - print word + print(word) should_i_print = False else: should_i_print = True