#!/usr/bin/python

import random

people = ['roberto', 'david', 'marcos', 'jorge', 'javier', 'josemanuel']
gifts = ['bolsa1', 'bolsa2', 'raton', 'taza']

for gift in gifts
  winner = random.sample(it, 1)
  print 'And the winner of ' + gift +  ' is ' + str(winner[0])
  people.remove(str(winner[0]))
