**TI83F*

Created by TI-Smartview CE 5.4.0.1858     ô  ã C1TP1A    ã á PYCD01_Indice_Tlespe_TP1_A.py from random import randint
def gen_perm():
    E=[1,2,3]
    P=[]
    for i in range(3):
        r=len(E)
        j=randint(0,r-1)
        P.append(E[j])
        E.pop(j)
    return(P)š?