课程
/后端开发
/Python
/初识Python
用内置函数sum和append实现
2015-03-19
源自:初识Python 7-3
正在回答
def square_of_sum(L) y=[] for x in L: y.append(x*x) return sum(y) print square_of_sum([1,2,3,4,5]) print square_of_sum([-5,0,5,15,25])
举报
学python入门视频教程,让你快速入门并能编写简单的Python程序