Test
October 28, 2020•238 words
"There are two ways of doing something: right and again."
Tally of Errors:
Logic:
Spelling:
Syntax:
vs.
Actualy Learning Something New:
I forgot to save my case statement into a variable when I refactored it from the original if/else statement (where the result was saved into a result variable). Due to this, my line that displays the result through string interpolation threw a NameError because I was interpolating a variable that no longer existed in my refactored code.
this is a sy...
Read post