#!/usr/bin/python # -*- coding: UTF-8 -*- def square_of_sum(L): for x in L: a = x * x return sum(a) print(square_of_sum([1, 2, 3, 4])) 查看完整描述