Skip to content

Instantly share code, notes, and snippets.

@brinnaebent
Created June 22, 2020 23:04
Show Gist options
  • Save brinnaebent/ddfddceaef9ea796f6a3a84e2576097a to your computer and use it in GitHub Desktop.
Save brinnaebent/ddfddceaef9ea796f6a3a84e2576097a to your computer and use it in GitHub Desktop.
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