cara membuat fungsi untuk memilih hal -hal acak dalam python

import random
def deal_card():
    cards = [11,2,3,4,5,6,7,8,10,10,10,10]
    card = random.choice(cards)
    return card
Programmer of empires