Skip to content

Instantly share code, notes, and snippets.

@Pierian-Data
Created March 1, 2018 17:13
Show Gist options
  • Save Pierian-Data/57bbea951248f8d83097b5581493d3f6 to your computer and use it in GitHub Desktop.
Save Pierian-Data/57bbea951248f8d83097b5581493d3f6 to your computer and use it in GitHub Desktop.
def myfunc(a,b):
print(a+b)
# return a+b
@darkh00k
Copy link

def myfunc(a,b):
return a+b
myfunc(6,7)

@haneenmuhammed2005
Copy link

def my_function(num1,num2):
return num1+num2

my_function(80,20)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment