Guest User

Untitled

a guest
May 28th, 2018
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. 'def sum(ab,bc):
  2. cd = ab + bc
  3. return cd
  4.  
  5. ab = 5
  6. bc = 6
  7.  
  8. som(ab,bc)
  9. print(cd)'
  10.  
  11. def diff (x,y):
  12. ef = x - y
  13. return ef
  14.  
  15. diff(cd,3)'
  16.  
  17. def sum(ab,bc):
  18. cd = ab + bc
  19. return cd
  20.  
  21. ab = 5
  22. bc = 6
  23.  
  24. res=sum(ab,bc)
  25. print(res)'
  26.  
  27. def sum(a,b):
  28.  
  29. ret = a+b
  30. print ret
  31. return ret
Add Comment
Please, Sign In to add comment