def carre(n):
    return list(map(lambda x : x*x, range(n + 1)))

print(carre(5))