Random Integer 0-9999
#!/usr/bin/env python | |
from time import time | |
import random | |
random.seed(time()) | |
print random.randint(0,9999) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment