Skip to content

Instantly share code, notes, and snippets.

@wohlben
wohlben / wtd_choices.py
Created January 10, 2018 08:37 — forked from Dowwie/wtd_choices.py
As of Python3.6, random.choices offers weighted choices
age_groups = [lambda: random.randint(18,25),
lambda: random.randint(25,40),
lambda: random.randint(40,90)]
age_group_probs = [.5, .3, .1]
def get_choices():
pop_choices = random.choices(age_groups, weights=age_group_probs, k=10)
population = list(map(lambda x: x(), pop_choices))