Skip to content

Instantly share code, notes, and snippets.

@uxp
Created May 20, 2013 22:33
Show Gist options
  • Save uxp/5616134 to your computer and use it in GitHub Desktop.
Save uxp/5616134 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
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