Advertisement
Brianojee

Untitled

May 16th, 2016
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.30 KB | None | 0 0
  1. '''
  2. Author: Tom Bombadil
  3. Date: 12/01/2015
  4. Version 1.5
  5. 14/4/2015 changed parameter names from a,b to x,y - Bob Newhart
  6.  
  7. Usage: This function returns the sum
  8. of two values passed to the function
  9. '''
  10. def my_function(x, y):
  11.    #add x to y
  12.    z = x + y
  13.    #return the result of x + y
  14.    return z
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement