nord vpnnord vpn
Ad

Untitled

mail@pastecode.io avatar
unknown
python
a year ago
255 B
2
Indexable
Never
def crear_prescripciones(experimentos: int) -> list[int]:
    prescripciones: list = []
    for i in range(experimentos):
        randnum: float = random.randint(0,2)
        prescripciones.append(tabla_de_prescripciones[randnum]
    return prescripciones

nord vpnnord vpn
Ad