X-Git-Url: https://projects.mako.cc/source/wordplay-cdsw-solutions/blobdiff_plain/884ad8e21ea1ea9d1dd411b2a503d0dff4294c59..HEAD:/solution_2.py diff --git a/solution_2.py b/solution_2.py index 9d5469d..f6deda9 100644 --- a/solution_2.py +++ b/solution_2.py @@ -1,21 +1,15 @@ import scrabble - # What is the longest word that starts with a q? + # This is the most common student solution, which prints the *first* occurence of # the longest word. See solution_2_advanced.py for more info. longest_so_far = '' # Store the longest word we've seen up to this point. for word in scrabble.wordlist: - if word[0] == 'q': - if len(word) > len(longest_so_far): # What if I use >= rather than > here? - longest_so_far = word - #print word # Use this to see the progression. - - -print longest_so_far - - + if len(word) > len(longest_so_far): # Question: What if I use >= rather than > here? + longest_so_far = word +print(longest_so_far)