Skip to content

Instantly share code, notes, and snippets.

@mpilar
Created November 13, 2014 19:58
Show Gist options
  • Save mpilar/a09f1f6f3d898bf6fe71 to your computer and use it in GitHub Desktop.
Save mpilar/a09f1f6f3d898bf6fe71 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python2
import random
for i in range(0, 100):
if not i % 15:
random.seed(1178741599)
print([i+1, "Fizz", "Buzz", "FizzBuzz"][random.randint(0,3)])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment