Skip to content

Instantly share code, notes, and snippets.

@thomaswpp
Created October 21, 2016 23:33
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 thomaswpp/ca628a6f48120e592c0b1f39cc3f30a2 to your computer and use it in GitHub Desktop.
Save thomaswpp/ca628a6f48120e592c0b1f39cc3f30a2 to your computer and use it in GitHub Desktop.
def teste(*args, **kwargs):
for key in kwargs.keys():
print(key)
for i in args:
print(i)
teste(nome="Thomas", sobrenome="William")
teste('1', '2', 'teste2', 'teste 4')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment