Created
August 29, 2011 20:16
-
-
Save svenstaro/1179277 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 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