Skip to content

Instantly share code, notes, and snippets.

@ofelix03
Last active May 2, 2021 20:23
Show Gist options
  • Select an option

  • Save ofelix03/2b6169a921836f33c578eee905d05ac0 to your computer and use it in GitHub Desktop.

Select an option

Save ofelix03/2b6169a921836f33c578eee905d05ac0 to your computer and use it in GitHub Desktop.
function-parameters-and-arguments
# defining a function with parameters
function send_money(amount, currency_code, recipient_name):
# code for sending money goes here
return True
# calling a function with arguments
money_sent = send_money(2000, 'USD', 'Felix Otoo')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment