Last active
August 29, 2015 14:14
-
-
Save enkeboll/7fa212d0ef3414b5c376 to your computer and use it in GitHub Desktop.
Super Bowl Box Pool Digit Picker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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