Advertisement
Guest User

new

a guest
Jul 16th, 2018
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.11 KB | None | 0 0
  1. def calc(numb1, numb2):
  2.     for numbers in range(3):
  3.         result = numb1 + numb2
  4.     return result
  5.    
  6.  
  7.    
  8. print(calc(3, 4))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement