def liste_diviseurs(n):
    L = []
    for k in range(1,abs(n)+1):
        if n%k == 0:
            L.append(k)

    return L
