Advertisement
drinfernoo

Untitled

Oct 1st, 2023
988
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.32 KB | None | 0 0
  1. class Calculator:
  2.     def add(self, a, b):
  3.         return a + b
  4.  
  5.     def subtract(self, a, b):
  6.         return a - b
  7.  
  8.     def multiply(self, a, b):
  9.         return a * b
  10.  
  11.     def divide(self, a, b):
  12.         try:
  13.             return a / b
  14.         except ZeroDivisionError:
  15.             return "You can't divide by zero!"
  16.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement