Puzzle
Predict the output of
from random import *
seed()
[choice(dict((x+1,0) for x in range(1000))) for x in range(693)][0]
It's harder than you think :)
from random import *
seed()
[choice(dict((x+1,0) for x in range(1000))) for x in range(693)][0]
It's harder than you think :)
