Skip to content

Instantly share code, notes, and snippets.

@NMZivkovic
Created October 17, 2019 13:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NMZivkovic/fe12125f1c79d62c43b228337a5f6902 to your computer and use it in GitHub Desktop.
Save NMZivkovic/fe12125f1c79d62c43b228337a5f6902 to your computer and use it in GitHub Desktop.
def function(a, b /):
print(a + b)
# Invalid
function(a = 5, b = 6)
# Valid
function(5, 6)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment