Skip to content

Instantly share code, notes, and snippets.

@shifatul-i
Created October 3, 2019 19:50
Show Gist options
  • Save shifatul-i/3cb06ead8893a171e43e7f59fb56fdeb to your computer and use it in GitHub Desktop.
Save shifatul-i/3cb06ead8893a171e43e7f59fb56fdeb to your computer and use it in GitHub Desktop.
def my_function():
print('Hello From My Function!')
def say_my_name(name):
print('Your name is {}'.format(name))
def sum_two_numbers(a, b):
return a + b
my_function()
say_my_name('Sif')
print(sum_two_numbers(2, 8))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment