Deal four hands of five cards
#!/usr/bin/python
numbers= ['A', '2', '3', '4', '5', '6', '7', '8', '9', '10', 'J', 'Q', 'K']*4
suits=['h','d','c','s']*13
cards=[x+y for x,y in zip(numbers, suits)]
import random
random.shuffle(cards)
print cards[1:6];print cards[7:12];print cards[13:18];print cards[18:23]