Created
January 25, 2020 06:58
-
-
Save tahmidefaz/f0ae2ec926c3e293f462b4d1a1c41a39 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 1 + 4 # 5 | |
| 12 - 3 # 9 | |
| 7 * 8 # 56 | |
| 10/3 # 3.3333.... | |
| 16 % 5 # 1 - modulus operator, the remainder of the division | |
| 16 // 5 # 3 - floor division operator | |
| 2**3 # 8 - exponentiation operator |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment