Skip to content

Instantly share code, notes, and snippets.

@suresk
Created August 1, 2012 03:07
Show Gist options
  • Save suresk/3223267 to your computer and use it in GitHub Desktop.
Save suresk/3223267 to your computer and use it in GitHub Desktop.
FF Draft Order
import random
import sys
if (len(sys.argv) > 1):
list = open(sys.argv[1]).readlines()
random.shuffle(list)
for team in list:
print team.strip()
else:
print("You need to specify the file name.")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment