Skip to content

Instantly share code, notes, and snippets.

@francisluong
Created September 3, 2014 02:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save francisluong/ba885c532f836e3837ed to your computer and use it in GitHub Desktop.
Save francisluong/ba885c532f836e3837ed to your computer and use it in GitHub Desktop.
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