为了账号安全,请及时绑定邮箱和手机立即绑定

我是这么写的

def square_of_sum(L):

    sum1=0

    new_L=[]

    for s in L:

        #print s*s

        sum1=s*s+sum1

        new_L.append(s*s)

        #print new_L

    return sum(new_L)

print square_of_sum([1, 2, 3, 4, 5])

print square_of_sum([-5, 0, 5, 15, 25])


正在回答

2 回答

def square_of_sum(L):
    b = []
    for a in L:
        b.append(a * a)
    return sum(b)


print(square_of_sum([1, 2, 3, 4, 5]))
print(square_of_sum([-5, 0, 5, 15, 25]))

为何你要那么麻烦?

0 回复 有任何疑惑可以回复我~

冗余,本来不需要占用内存,强行建个新list

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
初识Python
  • 参与学习       758620    人
  • 解答问题       8667    个

学python入门视频教程,让你快速入门并能编写简单的Python程序

进入课程

我是这么写的

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信