Created
November 3, 2019 05:52
-
-
Save afaqk9394/81426be6d96f6d778299dabbdb301b7c to your computer and use it in GitHub Desktop.
calculator
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
| class Calculator(object): | |
| def subtract(self, x, y): | |
| return x-y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment