Skip to content

Instantly share code, notes, and snippets.

@jelloslinger
Created October 7, 2015 13:21
Show Gist options
  • Select an option

  • Save jelloslinger/b2fdb370bf228a8cf2f2 to your computer and use it in GitHub Desktop.

Select an option

Save jelloslinger/b2fdb370bf228a8cf2f2 to your computer and use it in GitHub Desktop.
#!/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