fast_choice# fast_choice(weights)[source]# Choose an option – quickly – from the provided weights. Weights do not need to be normalized. Reimplementation of random.choices(), removing everything inessential. Example fast_choice([0.1,0.2,0.3,0.2,0.1]) # might return 2