Advertisement
Blessing988

Untitled

Feb 7th, 2020
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.08 KB | None | 0 0
  1. def multiplier(a=1, b=1, c=1)->int:
  2.     return(a*b*c)
  3.  
  4. #Testing
  5. print(multiplier())
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement