Created
January 1, 2022 03:42
-
-
Save ycui1/b16e0d3444a996c11161b1650f703d6f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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