课程
/后端开发
/Python
/初识Python
def square_of_sum(L):
i for i in L
return i*=i
2019-01-19
源自:初识Python 7-3
正在回答
多了个i少了个:,可以运行下面的例子
iL=[]
for i in L:
iL.append(i*i)
return sum(iL)
print square_of_sum([1,2,3])
举报
学python入门视频教程,让你快速入门并能编写简单的Python程序