Guest User

Untitled

a guest
May 25th, 2018
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.10 KB | None | 0 0
  1. >>> def b(test={}):
  2. ... print test
  3. ... test['foo'] = 'bar'
  4. ...
  5. >>> b()
  6. {}
  7. >>> b()
  8. {'foo': 'bar'}
Add Comment
Please, Sign In to add comment