Created
June 22, 2020 23:04
-
-
Save brinnaebent/ddfddceaef9ea796f6a3a84e2576097a to your computer and use it in GitHub Desktop.
This file contains 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
import numpy as np | |
import pandas as pd | |
''' | |
Here is a basic description of what these functions do! | |
Find more information at this link: Link to your GitHub/webpage here | |
''' | |
def functionadd(arg1, arg2): | |
""" | |
Description of function | |
Args: | |
arg1 (integer): description of arg1 | |
arg2 (integer): description of arg2 | |
Returns: | |
return1 (type): description of return | |
""" | |
return1 = arg1 + arg2 | |
return return1 | |
def functionsubtract(arg1, arg2): | |
""" | |
Description of function | |
Args: | |
arg1 (integer): description of arg1 | |
arg2 (integer): description of arg2 | |
Returns: | |
return1 (type): description of return | |
""" | |
return1 = arg1 - arg2 | |
return return1 | |
def functionmultiply(arg1, arg2): | |
""" | |
Description of function | |
Args: | |
arg1 (integer): description of arg1 | |
arg2 (integer): description of arg2 | |
Returns: | |
return1 (type): description of return | |
""" | |
return1 = arg1 * arg2 | |
return return1 | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment