Created
November 13, 2014 19:58
-
-
Save mpilar/a09f1f6f3d898bf6fe71 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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