Add integer division comparison to Numeric in Data Types
Is your feature request related to a problem? Please describe. The Python code block using a match statement that takes a two or three digit integer called grade and uses floor division to remove the rightmost digit. This may be confusing to students who are not aware that using floor division on a number like 85 will result in 8 when dividing the number by 10.
Describe the solution you'd like Explain floor division here, and how it is being used to strip away digits so the grade can be used in the match statement.
Totally agree!
Working on this
I added comments to the code in the switch statement section, but what is needed is a reminder of integer division in the Data Types chapter.