Advertisement
Guest User

Untitled

a guest
Feb 11th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. def Addition(x, y):
  2. '''
  3. Fonction qui prend en paramètres 2 nombres
  4. et renvoie leur somme.
  5. '''
  6. return x + y
  7.  
  8. def Soustraction(x, y):
  9. return x - y
  10.  
  11. def Multiplication(x, y):
  12. return x * y
  13.  
  14. def Division(x, y):
  15. return x / y
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement