Advertisement
Alelluja

Untitled

Dec 23rd, 2019
142
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.    
  3.     def adding(self, a, b):
  4.         wynik = a + b
  5.         print(wynik)
  6.  
  7.     def substraction(self, a, b):
  8.         wynik = a - b
  9.         print(wynik)
  10.  
  11.     def multiplication(self, a, b):
  12.         wynik = a * b
  13.         print(wynik)
  14.  
  15.     def division(self, a, b):
  16.         wynik = a / b
  17.         print(wynik)
  18.  
  19. calc = Calculator()
  20.  
  21. calc.adding(10, 5)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement