Skip to content

Instantly share code, notes, and snippets.

@ycui1
Created January 1, 2022 03:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ycui1/b16e0d3444a996c11161b1650f703d6f to your computer and use it in GitHub Desktop.
Save ycui1/b16e0d3444a996c11161b1650f703d6f to your computer and use it in GitHub Desktop.
def multiplier(num1: float, num2: float) -> float:
"""Multiply two numbers to get their product.
:param num1: float, first number for multiplication
:param num2: float, second number for multiplication
:return: float, the product of the two numbers
"""
return num1 * num2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment