Advertisement
ancestor_tunji

#multiplier_function

Feb 6th, 2020
132
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.26 KB | None | 0 0
  1. #3
  2. def multiplier_function(a = 1, b = 1, c = 1):
  3.     return("The product of the arguments is " + str(a*b*c) + ". The product is the total when the values are multiplied together" )
  4.    
  5. result = multiplier_function()
  6. print(result)
  7. multiplier_function(2,2,2)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement