For task 1: List the things you changed and the purpose of changing it. Good reasons include making code easier to read and easier to navigate when modifying it.
For task 2: List the errors you found and how you fixed it.
Task 1 (under Very Low Difficulty)
1. (A possible example)For readability, all variable names were changed to start with a lowercase letter (e.g. VerbList was changed to verbList) and all function names were changed to start with a uppercase letters
2. Other things you did
Task 2 (under Very Low Difficulty)
1. There was a bug in the following function.
defDisplayListOfVerbs():
print(VerbsArray)
There is no such variable as VerbsArray, to print out the list of verbs available, it was changed to display the list 'VerbList'
defDisplayListOfVerbs():
print(VerbList)
Attachment:- PYTH_Question.zip