Scrabble Project - the scores are not coming out by the serial

Welcome to the Get Help category!

This is where you can ask questions about your code. Some important things to remember when posting in this category :slight_smile:

player_to_points = {}
for player, words in player_to_words.items():
  player_points = 0
  for word in words:
   player_points += score_word(word)
  player_to_points[player] = player_points
print(player_to_points)

This topic was automatically closed 41 days after the last reply. New replies are no longer allowed.