Translations:Sorteando Amostras/3/en

De Augusto Baffa Wiki
Revisão de 17h41min de 28 de dezembro de 2020 por Abaffa (discussão | contribs) (Criou página com '<syntaxhighlight lang="Python"> def sample_picker(lst): """ Picks up a random sample from a given list """ # Sets seed based on the decimal portion of the curr...')
(dif) ← Edição anterior | Revisão atual (dif) | Versão posterior → (dif)
Ir para navegação Ir para pesquisar
def sample_picker(lst):
    """
    Picks up a random sample from a given list
    """
    # Sets seed based on the decimal portion of the current system clock
    t = time.perf_counter()
    seed = int(10**9*float(str(t-int(t))[0:]))
    
    # Random sample as an index
    s = pseudo_uniform(low=0,high=len(lst),seed=seed,size=1)
    idx = int(s)
    
    return (lst[idx])