numop1
index
/Users/jbloom/Classes/python-bootcamp/DataFiles_and_Notebooks/03_FunctionsAndModules/numop1.py

Some functions written to demonstrate a bunch of concepts like modules, import
and command-line programming
 
 PYTHON BOOT CAMP EXAMPLE; 
    created by Josh Bloom at UC Berkeley, 2012 (ucbpythonclass+bootcamp@gmail.com)

 
Functions
       
numop1(x, y, multiplier=1.0, greetings='Thank you for your inquiry.')
Purpose: does a simple operation on two numbers. 
 
Input: We expect x,y are numbers 
       multiplier is also a number (a float is preferred) and is optional.  
       It defaults to 1.0. You can also specify a small greeting as a string.
 
Output: return x + y times the multiplier