Good: Nice clean, easy to read code. Functions how it is suppose too.
Things to work on:
When commenting on what a method does, the comment should be directly under the method. For example,
#Grabs the two words from file given, separates them into an array and then
def check_similarity(tree, file_name):__
should be written as:
def check_similarity(tree, file_name):
'''
Grabs the two words from file given, separates them into an array and then
'''
Other than that everything looks good.
Good: Nice clean, easy to read code. Functions how it is suppose too.
Things to work on:
When commenting on what a method does, the comment should be directly under the method. For example,
#Grabs the two words from file given, separates them into an array and then
def check_similarity(tree, file_name):__
should be written as:
def check_similarity(tree, file_name):
'''
Grabs the two words from file given, separates them into an array and then
'''
Other than that everything looks good.