Line: 105
Current comment:
b = 2 # b is a variable name and 3 is an integer data type
Expected comment:
b = 2 # b is a variable name and 2 is an integer data type
The comment describing variable b incorrectly states the value is 3 when it was copy-pasted from the line above (where a = 3). The actual assigned value is 2.
Since this is a beginner-focused course, accurate inline comments are important for learners who rely on them to understand the code.
Line: 105
Current comment:
b = 2 # b is a variable name and 3 is an integer data type
Expected comment:
b = 2 # b is a variable name and 2 is an integer data type
The comment describing variable
bincorrectly states the value is3when it was copy-pasted from the line above (wherea = 3). The actual assigned value is2.Since this is a beginner-focused course, accurate inline comments are important for learners who rely on them to understand the code.