Guest User

Untitled

a guest
Jun 22nd, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.16 KB | None | 0 0
  1. import random
  2.  
  3. r = random.Random()
  4. def myfunc(a={}):
  5. a[str(r.randint(1,10000))] = 1
  6. return a
  7.  
  8. for i in range(0, 100):
  9. myfunc()
  10.  
  11. print str(myfunc())
Add Comment
Please, Sign In to add comment