Guest User

Untitled

a guest
Jan 24th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. >>> def teste(nome, idade):
  2. ... print nome, idade
  3. ...
  4. >>> teste('andrews', 26)
  5. andrews 26
  6. >>> teste(nome='andrews', idade=26)
  7. andrews 26
  8. >>> lista = ['pacote', 200]
  9. >>> teste(*lista)
  10. pacote 200
  11. >>> dicionario = {'nome': 'sargento', 'idade': 134}
  12. >>> teste(**dicionario)
  13. sargento 134
  14. >>>
Add Comment
Please, Sign In to add comment