Skip to content

Instantly share code, notes, and snippets.

@eduherraiz
Created January 10, 2014 13:07
Show Gist options
  • Save eduherraiz/8351647 to your computer and use it in GitHub Desktop.
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
#!/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