|
def is_word_guessed(secret_word, letters_guessed): |
Although it is often standard practice to use i and j as counters, it is more clear to other people reading your code if you maybe use letters or num instead of i and j to give a clear idea of what your iterating through.
Also general spacing throughout the whole project would increase readability. Such as line breaks for new functions and spacing in all of your equations.
The general code modularity is good and the logic is good. Good job!
Spaceman/courses/Repos/Spaceman/spaceman.py
Line 11 in aa9a0ea
Although it is often standard practice to use i and j as counters, it is more clear to other people reading your code if you maybe use letters or num instead of i and j to give a clear idea of what your iterating through.
Also general spacing throughout the whole project would increase readability. Such as line breaks for new functions and spacing in all of your equations.
The general code modularity is good and the logic is good. Good job!