Skip to content

Commit

Permalink
Update 01_Python_Basics.md
Browse files Browse the repository at this point in the history
Spelling change from "Remaider" to "Remainder" for the modulus operator description
  • Loading branch information
samithamphk authored Sep 25, 2020
1 parent 719c1f1 commit 5f349b4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion markdown/01_Python_Basics.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ From **Highest** to **Lowest** precedence:
| Operators | Operation | Example |
| --------- | ---------------- | --------------- |
| ** | Exponent | `2 ** 3 = 8` |
| % | Modulus/Remaider | `22 % 8 = 6` |
| % | Modulus/Remainder | `22 % 8 = 6` |
| // | Integer division | `22 // 8 = 2` |
| / | Division | `22 / 8 = 2.75` |
| * | Multiplication | `3 * 3 = 9` |
Expand Down

0 comments on commit 5f349b4

Please sign in to comment.