Skip to content

Instantly share code, notes, and snippets.

@enkeboll
Last active August 29, 2015 14:14
Show Gist options
  • Save enkeboll/7fa212d0ef3414b5c376 to your computer and use it in GitHub Desktop.
Save enkeboll/7fa212d0ef3414b5c376 to your computer and use it in GitHub Desktop.
Super Bowl Box Pool Digit Picker
import random
def main():
teams = ["Patriots","Seahawks"]
ones = {"Patriots": range(10),
"Seahawks": range(10)}
random.shuffle(teams)
for team in teams:
random.shuffle(ones[team])
for team in teams: print "{}: {}".format(team, ones[team])
if __name__ == '__main__':
main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment