carré (n) somme

def square_sum(numbers):
    return sum(x ** 2 for x in numbers)
Code language: Python (python)
Ian