Created
January 10, 2014 13:07
-
-
Save eduherraiz/8351647 to your computer and use it in GitHub Desktop.
Script para sortear a quién le toca llamar para pedir las pizzas
This file contains 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
#!/bin/python | |
from random import choice | |
players = ['Fran', 'Marc', 'Luis','Alvaro','Cristian', 'Edu'] | |
p1 = choice(players) | |
print "Le toca llamar a : %s" % (p1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment