Skip to content

Instantly share code, notes, and snippets.

@svenstaro
Created August 29, 2011 20:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save svenstaro/1179277 to your computer and use it in GitHub Desktop.
Save svenstaro/1179277 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python2
# -*- coding: cp1252 -*-
import random
leute=["svenstaro","spielepetie","matjhew","carboxl","kryptonbrand",
"bbqbob","jtvennox","timesqueezer","arthimis","zlox"]
random.shuffle(leute)
team1=[]
team2=[]
for players in xrange(5):
team1.append(leute.pop())
for players in xrange(5):
team2.append(leute.pop())
print "team1: "
print team1
print "team2: "
print team2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment