kmaurinjones commited on
Commit
d3ba825
1 Parent(s): 4702916

Update wordle_functions.py

Browse files
Files changed (1) hide show
  1. wordle_functions.py +5 -1
wordle_functions.py CHANGED
@@ -642,7 +642,11 @@ def wordle_wizard(word_list: list, max_guesses: int = None,
642
 
643
  if return_stats == False:
644
  if verbose == True:
645
- print(f"The only remaining possible word is:\n\t'{list(potential_next_guesses)[0]}'\n")
 
 
 
 
646
  record_list.append(f"The only remaining possible word is: '{list(potential_next_guesses)[0]}'\n")
647
 
648
  guess = list(potential_next_guesses)[0]
 
642
 
643
  if return_stats == False:
644
  if verbose == True:
645
+ # print(f"All potential next guesses:\n\t{word_ratings}\n")
646
+ # print(f"Words guessed so far:\n\t{guessed_words}.\n")
647
+ # record_list.append(f"Potential next guesses: {word_ratings}\n")
648
+ record_list.append(f"Words guessed so far: {guessed_words}.\n")
649
+ # print(f"The only remaining possible word is:\n\t'{list(potential_next_guesses)[0]}'\n")
650
  record_list.append(f"The only remaining possible word is: '{list(potential_next_guesses)[0]}'\n")
651
 
652
  guess = list(potential_next_guesses)[0]