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

如果把题目改成 list里面每个元素求平方 然后输出list

def square_of_list(x):
for x in L:
y=x*x
return y
print square_of_list([1,2,3,4,5])


正在回答

5 回答

def square_of_edge(L):
    n1 = []
    for i in L:
        n1.append(i * i)
    return n1
print square_of_edge([1, 2, 3, 4, 5])


0 回复 有任何疑惑可以回复我~
def square_of_list(L):
    return [i**2 for i in L]
print square_of_list([1,2,3,4,5])
0 回复 有任何疑惑可以回复我~

def square_of_list(L):
  n = len(L)
  x = 0
  while x <= n:
      print L[x] * L[x]
      x = x + 1
print square_of_list([1,2,3,4,5])

0 回复 有任何疑惑可以回复我~
def square_of_list(L):
    return sum([x**2 for x in L])
print square_of_list([1,2,3,4,5])


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

def square_of_list(L):
    y=0
   for x in L:
        y+=x*x
   return y
print (square_of_list([1,2,3,4,5]))

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

举报

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

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

进入课程

如果把题目改成 list里面每个元素求平方 然后输出list

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