Created
October 3, 2019 19:27
-
-
Save shifatul-i/1bb5a81d631d914755a95f7a7d7ecf8c 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
| number = 1 + 2 * 3 / 4.0 | |
| print(number) | |
| remainder = 11 % 3 | |
| print(remainder) | |
| squared = 7 ** 2 | |
| print(squared) | |
| cubed = 2 ** 3 | |
| print(cubed) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment