Skip to content

Instantly share code, notes, and snippets.

@adcoh
Created September 9, 2020 10:32
Show Gist options
  • Save adcoh/9443a5748c6869129f64de54c3b75816 to your computer and use it in GitHub Desktop.
Save adcoh/9443a5748c6869129f64de54c3b75816 to your computer and use it in GitHub Desktop.
Byvalue Calculator
def hello_user(name):
return f'Welcome {name} and thank you for using our calculator!'
def addition(a,b):
return a+b
def subtraction(a,b):
return a-b
def division(a,b):
return a/b
def multiplication(a,b):
return a*b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment