Created
October 7, 2015 13:21
-
-
Save jelloslinger/b2fdb370bf228a8cf2f2 to your computer and use it in GitHub Desktop.
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
| #!/usr/bin/env python | |
| # -*- coding: utf-8 -*- | |
| import random | |
| TEAMS = [ | |
| 'Greg\'s Team' | |
| , 'AMR\'s Puck Buckets' | |
| , 'Willow Warriors' | |
| , 'biff\'s Swag Team' | |
| , 'Sir Hits A Lot' | |
| , 'Los Isotopos' | |
| , 'Bmack & Sons' | |
| , 'Gretzky\'s Bookie' | |
| , 'Cocaine Cowboys' | |
| , 'Raymond\'s Team' | |
| , 'TCoch' | |
| , 'David\'s Dandy Team' | |
| , 'Baby Got Backstrom' | |
| , 'Who wants Seabrook' | |
| , 'BoneThugs-n-Harmonic' | |
| , 'Vista Beach Awesome' | |
| ]; | |
| if __name__ == '__main__': | |
| random.shuffle(TEAMS); | |
| for i, t in enumerate(TEAMS): | |
| print i+1,t |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment