Skip to content

Instantly share code, notes, and snippets.

@kzar
Created September 28, 2017 10:32
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 kzar/3b77355ac3f18b14622761fbf4dfe465 to your computer and use it in GitHub Desktop.
Save kzar/3b77355ac3f18b14622761fbf4dfe465 to your computer and use it in GitHub Desktop.
Shared default parameter value Python example
import random
def foo(b={}):
b[random.random()] = "bar"
print b
for i in range(10):
print "Iteration " + str(i + 1)
foo()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment