**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.